@subql/common-stellar 3.0.0 → 3.0.2-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 +6 -1
  2. package/package.json +4 -3
package/CHANGELOG.md CHANGED
@@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6
6
 
7
7
  ## [Unreleased]
8
8
 
9
+ ## [3.0.1] - 2023-10-13
10
+ ### Changed
11
+ - Version bump with `@subql/common` 3.1.2
12
+
9
13
  ## [3.0.0] - 2023-10-05
10
14
  ### Added
11
15
  - Parent field to manifest for project upgrades (#18)
@@ -18,7 +22,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
18
22
  - rename `soroban` to `sorobanEndpoint` in network config (#16)
19
23
 
20
24
  ## [2.3.0] - 2023-09-12
21
- [Unreleased]: https://github.com/subquery/subql-stellar/compare/common-stellar/3.0.0...HEAD
25
+ [Unreleased]: https://github.com/subquery/subql-stellar/compare/common-stellar/3.0.1...HEAD
26
+ [3.0.1]: https://github.com/subquery/subql-stellar/compare/common-stellar/3.0.0...common-stellar/3.0.1
22
27
  [3.0.0]: https://github.com/subquery/subql-stellar/compare/common-stellar/2.3.1...common-stellar/3.0.0
23
28
  [2.3.1]: https://github.com/subquery/subql-stellar/compare/common-stellar/2.3.0...common-stellar/2.3.1
24
29
  [2.3.0]: https://github.com/subquery/subql-stellar/tag/v2.3.0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@subql/common-stellar",
3
- "version": "3.0.0",
3
+ "version": "3.0.2-0",
4
4
  "description": "",
5
5
  "scripts": {
6
6
  "build": "rm -rf dist && tsc -b",
@@ -13,7 +13,7 @@
13
13
  "main": "dist/index.js",
14
14
  "license": "GPL-3.0",
15
15
  "dependencies": {
16
- "@subql/common": "^3.1.1",
16
+ "@subql/common": "^3.1.2",
17
17
  "@subql/types-stellar": "3.0.0",
18
18
  "js-yaml": "^4.1.0",
19
19
  "pino": "^6.13.3",
@@ -27,5 +27,6 @@
27
27
  "devDependencies": {
28
28
  "@types/js-yaml": "^4.0.4",
29
29
  "@types/pino": "^6.3.12"
30
- }
30
+ },
31
+ "stableVersion": "3.0.1"
31
32
  }