@subql/node-stellar 3.0.1-0 → 3.0.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 +6 -1
  2. package/package.json +2 -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-11
10
+ ### Fixed
11
+ - reduce the number of deepcopies in wrapping a block (#20)
12
+
9
13
  ## [3.0.0] - 2023-10-05
10
14
  ### Changed
11
15
  - Update @subql/node-core and sync with main SDK. (#18)
@@ -15,7 +19,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
15
19
  - rename `soroban` to `sorobanEndpoint` in network config (#16)
16
20
 
17
21
  ## [2.12.0] - 2023-09-12
18
- [Unreleased]: https://github.com/subquery/subql-stellar/compare/node-stellar/3.0.0...HEAD
22
+ [Unreleased]: https://github.com/subquery/subql-stellar/compare/node-stellar/3.0.1...HEAD
23
+ [3.0.1]: https://github.com/subquery/subql-stellar/compare/node-stellar/3.0.0...node-stellar/3.0.1
19
24
  [3.0.0]: https://github.com/subquery/subql-stellar/compare/node-stellar/2.12.1...node-stellar/3.0.0
20
25
  [2.12.1]: https://github.com/subquery/subql-stellar/compare/node-stellar/2.12.0...node-stellar/2.12.1
21
26
  [2.12.0]: https://github.com/subquery/subql-stellar/tag/v2.12.0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@subql/node-stellar",
3
- "version": "3.0.1-0",
3
+ "version": "3.0.1",
4
4
  "description": "",
5
5
  "author": "Ian He",
6
6
  "license": "GPL-3.0",
@@ -64,6 +64,5 @@
64
64
  "files": [
65
65
  "/dist",
66
66
  "/bin"
67
- ],
68
- "stableVersion": "3.0.0"
67
+ ]
69
68
  }