@subql/common-stellar 3.4.1-0 → 3.4.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 +3 -4
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.4.1] - 2024-04-11
10
+ ### Fixed
11
+ - Fixed failed previous release
12
+
9
13
  ## [3.4.0] - 2024-04-10
10
14
  ### Changed
11
15
  - version bump with `@subql/common`
@@ -46,7 +50,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
46
50
  - rename `soroban` to `sorobanEndpoint` in network config (#16)
47
51
 
48
52
  ## [2.3.0] - 2023-09-12
49
- [Unreleased]: https://github.com/subquery/subql-stellar/compare/common-stellar/3.4.0...HEAD
53
+ [Unreleased]: https://github.com/subquery/subql-stellar/compare/common-stellar/3.4.1...HEAD
54
+ [3.4.1]: https://github.com/subquery/subql-stellar/compare/common-stellar/3.4.0...common-stellar/3.4.1
50
55
  [3.4.0]: https://github.com/subquery/subql-stellar/compare/common-stellar/3.3.2...common-stellar/3.4.0
51
56
  [3.3.2]: https://github.com/subquery/subql-stellar/compare/common-stellar/3.3.1...common-stellar/3.3.2
52
57
  [3.3.1]: https://github.com/subquery/subql-stellar/compare/common-stellar/3.3.0...common-stellar/3.3.1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@subql/common-stellar",
3
- "version": "3.4.1-0",
3
+ "version": "3.4.1",
4
4
  "description": "",
5
5
  "scripts": {
6
6
  "build": "rm -rf dist && tsc -b",
@@ -15,7 +15,7 @@
15
15
  "license": "GPL-3.0",
16
16
  "dependencies": {
17
17
  "@subql/common": "^3.5.0",
18
- "@subql/types-stellar": "3.3.1-0",
18
+ "@subql/types-stellar": "3.3.1",
19
19
  "js-yaml": "^4.1.0",
20
20
  "pino": "^6.13.3",
21
21
  "reflect-metadata": "^0.1.13",
@@ -28,6 +28,5 @@
28
28
  "devDependencies": {
29
29
  "@types/js-yaml": "^4.0.4",
30
30
  "@types/pino": "^6.3.12"
31
- },
32
- "stableVersion": "3.4.0"
31
+ }
33
32
  }