@subql/common-stellar 3.0.2-1 → 3.1.1-0

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 +5 -4
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
  ### Added
9
11
  - Update `@subql/common` and relevant changes to support endBlock feature (#27)
10
12
 
@@ -24,7 +26,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
24
26
  - rename `soroban` to `sorobanEndpoint` in network config (#16)
25
27
 
26
28
  ## [2.3.0] - 2023-09-12
27
- [Unreleased]: https://github.com/subquery/subql-stellar/compare/common-stellar/3.0.1...HEAD
29
+ [Unreleased]: https://github.com/subquery/subql-stellar/compare/common-stellar/3.1.0...HEAD
30
+ [3.1.0]: https://github.com/subquery/subql-stellar/compare/common-stellar/3.0.1...common-stellar/3.1.0
28
31
  [3.0.1]: https://github.com/subquery/subql-stellar/compare/common-stellar/3.0.0...common-stellar/3.0.1
29
32
  [3.0.0]: https://github.com/subquery/subql-stellar/compare/common-stellar/2.3.1...common-stellar/3.0.0
30
33
  [2.3.1]: https://github.com/subquery/subql-stellar/compare/common-stellar/2.3.0...common-stellar/2.3.1
package/package.json CHANGED
@@ -1,11 +1,12 @@
1
1
  {
2
2
  "name": "@subql/common-stellar",
3
- "version": "3.0.2-1",
3
+ "version": "3.1.1-0",
4
4
  "description": "",
5
5
  "scripts": {
6
6
  "build": "rm -rf dist && tsc -b",
7
7
  "test": "echo \"Error: no test specified\" && exit 1",
8
- "format": "prettier --write \"src/**/*.ts\""
8
+ "format": "prettier --write \"src/**/*.ts\"",
9
+ "changelog:release": "echo \"Updating changelog $npm_package_version\" && npx chan release $npm_package_version --git-url \"https://github.com/subquery/subql-stellar\" --release-prefix=\"common-stellar/\""
9
10
  },
10
11
  "homepage": "https://github.com/subquery/subql-stellar",
11
12
  "repository": "github:subquery/subql-stellar",
@@ -14,7 +15,7 @@
14
15
  "license": "GPL-3.0",
15
16
  "dependencies": {
16
17
  "@subql/common": "^3.3.0",
17
- "@subql/types-stellar": "3.0.1-0",
18
+ "@subql/types-stellar": "3.1.1-0",
18
19
  "js-yaml": "^4.1.0",
19
20
  "pino": "^6.13.3",
20
21
  "reflect-metadata": "^0.1.13",
@@ -28,5 +29,5 @@
28
29
  "@types/js-yaml": "^4.0.4",
29
30
  "@types/pino": "^6.3.12"
30
31
  },
31
- "stableVersion": "3.0.2-0"
32
+ "stableVersion": "3.1.0"
32
33
  }