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