@subql/types-stellar 3.0.1-0 → 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.
- package/CHANGELOG.md +4 -1
- package/package.json +4 -3
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
|
### Changed
|
|
9
11
|
- Import `@subql/types-core` global into global so its no longer needed to update tsconfig in projects (#27)
|
|
10
12
|
|
|
@@ -13,6 +15,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
13
15
|
- Use @subql/types-core (#18)
|
|
14
16
|
|
|
15
17
|
## [2.3.0] - 2023-09-12
|
|
16
|
-
[Unreleased]: https://github.com/subquery/subql-stellar/compare/types-stellar/3.
|
|
18
|
+
[Unreleased]: https://github.com/subquery/subql-stellar/compare/types-stellar/3.1.0...HEAD
|
|
19
|
+
[3.1.0]: https://github.com/subquery/subql-stellar/compare/types-stellar/3.0.0...types-stellar/3.1.0
|
|
17
20
|
[3.0.0]: https://github.com/subquery/subql-stellar/compare/types-stellar/2.3.0...types-stellar/3.0.0
|
|
18
21
|
[2.3.0]: https://github.com/subquery/subql-stellar/tag/v2.3.0
|
package/package.json
CHANGED
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@subql/types-stellar",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.1.1-0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"homepage": "https://github.com/subquery/subql-stellar",
|
|
6
6
|
"repository": "github:subquery/subql-stellar",
|
|
7
7
|
"scripts": {
|
|
8
8
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
9
|
-
"build": "rm -rf dist && tsc -b"
|
|
9
|
+
"build": "rm -rf dist && tsc -b",
|
|
10
|
+
"changelog:release": "echo \"Updating changelog $npm_package_version\" && npx chan release $npm_package_version --git-url \"https://github.com/subquery/subql-stellar\" --release-prefix=\"types-stellar/\""
|
|
10
11
|
},
|
|
11
12
|
"author": "Ian He",
|
|
12
13
|
"main": "dist/index.js",
|
|
@@ -20,5 +21,5 @@
|
|
|
20
21
|
"soroban-client": "0.9.2",
|
|
21
22
|
"stellar-sdk": "^10.4.1"
|
|
22
23
|
},
|
|
23
|
-
"stableVersion": "3.
|
|
24
|
+
"stableVersion": "3.1.0"
|
|
24
25
|
}
|