@subql/common-substrate 4.1.1-0 → 4.1.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 +8 -1
  2. package/package.json +3 -4
package/CHANGELOG.md CHANGED
@@ -6,9 +6,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6
6
 
7
7
  ## [Unreleased]
8
8
 
9
+ ## [4.1.1] - 2024-07-25
10
+ ### Changed
11
+ - Bump version with `@subql/common`
12
+ - input type updated in `isRuntimeDs` (#2496)
13
+
9
14
  ## [4.1.0] - 2024-07-11
10
15
  ### Removed
11
16
  - Unused functions (#2484)
17
+
12
18
  ### Changed
13
19
  - Bump with `subql/common`
14
20
 
@@ -171,7 +177,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
171
177
  ### Added
172
178
  - init commit
173
179
 
174
- [Unreleased]: https://github.com/subquery/subql/compare/common-substrate/4.1.0...HEAD
180
+ [Unreleased]: https://github.com/subquery/subql/compare/common-substrate/4.1.1...HEAD
181
+ [4.1.1]: https://github.com/subquery/subql/compare/common-substrate/4.1.0...common-substrate/4.1.1
175
182
  [4.1.0]: https://github.com/subquery/subql/compare/common-substrate/4.0.1...common-substrate/4.1.0
176
183
  [4.0.1]: https://github.com/subquery/subql/compare/common-substrate/4.0.0...common-substrate/4.0.1
177
184
  [4.0.0]: https://github.com/subquery/subql/compare/common-substrate/3.8.1...common-substrate/4.0.0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@subql/common-substrate",
3
- "version": "4.1.1-0",
3
+ "version": "4.1.1",
4
4
  "description": "",
5
5
  "scripts": {
6
6
  "build": "rm -rf dist && tsc -b",
@@ -14,7 +14,7 @@
14
14
  "main": "dist/index.js",
15
15
  "license": "GPL-3.0",
16
16
  "dependencies": {
17
- "@subql/common": "4.1.0",
17
+ "@subql/common": "4.1.1",
18
18
  "@subql/types": "3.9.0",
19
19
  "js-yaml": "^4.1.0",
20
20
  "reflect-metadata": "^0.1.13"
@@ -27,6 +27,5 @@
27
27
  "@types/bn.js": "4.11.6",
28
28
  "@types/js-yaml": "^4.0.4",
29
29
  "@types/pino": "^6.3.12"
30
- },
31
- "stableVersion": "4.1.0"
30
+ }
32
31
  }