@subql/node-stellar 3.0.3-1 → 3.1.1-1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/CHANGELOG.md +4 -1
  2. package/package.json +6 -5
package/CHANGELOG.md CHANGED
@@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
5
5
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6
6
 
7
7
  ## [Unreleased]
8
+
9
+ ## [3.1.0] - 2023-11-01
8
10
  ### Changed
9
11
  - Update `@subql/node-core` with fixes and support for endBlock feature (#27)
10
12
 
@@ -32,7 +34,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
32
34
  - rename `soroban` to `sorobanEndpoint` in network config (#16)
33
35
 
34
36
  ## [2.12.0] - 2023-09-12
35
- [Unreleased]: https://github.com/subquery/subql-stellar/compare/node-stellar/3.0.2...HEAD
37
+ [Unreleased]: https://github.com/subquery/subql-stellar/compare/node-stellar/3.1.0...HEAD
38
+ [3.1.0]: https://github.com/subquery/subql-stellar/compare/node-stellar/3.0.2...node-stellar/3.1.0
36
39
  [3.0.2]: https://github.com/subquery/subql-stellar/compare/node-stellar/3.0.1...node-stellar/3.0.2
37
40
  [3.0.1]: https://github.com/subquery/subql-stellar/compare/node-stellar/3.0.0...node-stellar/3.0.1
38
41
  [3.0.0]: https://github.com/subquery/subql-stellar/compare/node-stellar/2.12.1...node-stellar/3.0.0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@subql/node-stellar",
3
- "version": "3.0.3-1",
3
+ "version": "3.1.1-1",
4
4
  "description": "",
5
5
  "author": "Ian He",
6
6
  "license": "GPL-3.0",
@@ -10,7 +10,8 @@
10
10
  "format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
11
11
  "start": "nest start",
12
12
  "start:dev": "nodemon",
13
- "start:prod": "node dist/main"
13
+ "start:prod": "node dist/main",
14
+ "changelog:release": "echo \"Updating changelog $npm_package_version\" && npx chan release $npm_package_version --git-url \"https://github.com/subquery/subql-stellar\" --release-prefix=\"node-stellar/\""
14
15
  },
15
16
  "homepage": "https://github.com/subquery/subql-stellar",
16
17
  "repository": "github:subquery/subql-stellar",
@@ -25,11 +26,11 @@
25
26
  "@nestjs/platform-express": "^9.4.0",
26
27
  "@nestjs/schedule": "^3.0.1",
27
28
  "@subql/common": "^3.3.0",
28
- "@subql/common-stellar": "3.0.2-1",
29
+ "@subql/common-stellar": "3.1.1-0",
29
30
  "@subql/node-core": "^6.2.0",
30
31
  "@subql/testing": "^2.0.0",
31
32
  "@subql/types": "^2.2.1-1",
32
- "@subql/types-stellar": "3.0.1-0",
33
+ "@subql/types-stellar": "3.1.1-0",
33
34
  "cacheable-lookup": "6",
34
35
  "cron-converter": "^1.0.2",
35
36
  "eventemitter2": "^6.4.5",
@@ -65,5 +66,5 @@
65
66
  "/dist",
66
67
  "/bin"
67
68
  ],
68
- "stableVersion": "3.0.3-0"
69
+ "stableVersion": "3.1.1-0"
69
70
  }