Skip to content

Commit

Permalink
[release] 20230511 v2 (#1685)
Browse files Browse the repository at this point in the history
  • Loading branch information
jiqiang90 authored May 11, 2023
1 parent 4f2ac7c commit f5a570c
Show file tree
Hide file tree
Showing 17 changed files with 40 additions and 29 deletions.
2 changes: 0 additions & 2 deletions .yarn/versions/3f69aa5f.yml

This file was deleted.

4 changes: 0 additions & 4 deletions .yarn/versions/6721ffd5.yml

This file was deleted.

3 changes: 0 additions & 3 deletions .yarn/versions/abfe2cc0.yml

This file was deleted.

2 changes: 0 additions & 2 deletions .yarn/versions/d490b698.yml

This file was deleted.

2 changes: 0 additions & 2 deletions .yarn/versions/e7882561.yml

This file was deleted.

4 changes: 4 additions & 0 deletions packages/common-substrate/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ All logs must start with the format: [x.y.z] - yyyy-mm-dd

## [Unreleased]

## [2.1.1] - 2023-05-11
### Changed
- Move validate function to common (#1683)

## [2.1.0] - 2023-05-10
### Added
- Ability to specify node runner options (#1652)
Expand Down
5 changes: 2 additions & 3 deletions packages/common-substrate/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@subql/common-substrate",
"version": "2.1.1-0",
"version": "2.1.1",
"description": "",
"scripts": {
"build": "rm -rf dist && tsc -b",
Expand All @@ -26,6 +26,5 @@
"@types/bn.js": "4.11.6",
"@types/js-yaml": "^4.0.4",
"@types/pino": "^6.3.12"
},
"stableVersion": "2.1.0"
}
}
4 changes: 4 additions & 0 deletions packages/common/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ All logs must start with the format: [x.y.z] - yyyy-mm-dd

## [Unreleased]

## [2.1.1] - 2023-05-11
### Changed
- Move validate function to common (#1683)

## [2.1.0] - 2023-05-10
### Added
- `BaseCustomDataSource` type (#1658)
Expand Down
5 changes: 2 additions & 3 deletions packages/common/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@subql/common",
"version": "2.1.1-0",
"version": "2.1.1",
"description": "",
"scripts": {
"build": "rm -rf dist && tsc -b",
Expand Down Expand Up @@ -30,6 +30,5 @@
"@types/pino": "^6.3.12",
"@types/semver": "^7.3.9",
"@types/tar": "^6.1.1"
},
"stableVersion": "2.1.0"
}
}
8 changes: 8 additions & 0 deletions packages/node-core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,14 @@ All logs must start with the format: [x.y.z] - yyyy-mm-dd

## [Unreleased]

## [2.1.2] - 2023-05-11
### Fixed
- Fix metadata check, allow base indexer manager to parse abis with ethereum (#1682)
### Changed
- Move validate function to common (#1683)
### Added
- Inject the chain id into sandboxes (#1684)

## [2.1.1] - 2023-05-11
### Fixed
- Extract dictionary meta validation so it can be overridden (#1679)
Expand Down
5 changes: 2 additions & 3 deletions packages/node-core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@subql/node-core",
"version": "2.1.2-2",
"version": "2.1.2",
"description": "Common node features that are agnostic to blockchains",
"homepage": "https://github.com/subquery/subql",
"repository": "github:subquery/subql",
Expand Down Expand Up @@ -44,6 +44,5 @@
},
"devDependencies": {
"@types/async-lock": "^1"
},
"stableVersion": "2.1.2-1"
}
}
6 changes: 6 additions & 0 deletions packages/node/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [2.1.2] - 2023-05-12
- Sync change with `[email protected]`
- Fix metadata check, allow base indexer manager to parse abis with ethereum (#1682)
- Move validate function to common (#1683)
- Inject the chain id into sandboxes (#1684)

## [2.1.1] - 2023-05-11
### Fixed
- Fix missing scheduler subcommands (#1677)
Expand Down
5 changes: 2 additions & 3 deletions packages/node/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@subql/node",
"version": "2.1.2-2",
"version": "2.1.2",
"description": "",
"author": "Ian He",
"license": "Apache-2.0",
Expand Down Expand Up @@ -59,6 +59,5 @@
"files": [
"/dist",
"/bin"
],
"stableVersion": "2.1.2-1"
]
}
3 changes: 3 additions & 0 deletions packages/testing/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,8 @@ All logs must start with the format: [x.y.z] - yyyy-mm-dd
## [Unreleased]


## [2.0.1] - 2023-05-11
- Sync with `[email protected]`

## [2.0.0] - 2023-04-20
- Major release 2.0.0, align with other package versions
2 changes: 1 addition & 1 deletion packages/testing/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@subql/testing",
"version": "2.0.0",
"version": "2.0.1",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rm -rf dist && tsc -b"
Expand Down
4 changes: 4 additions & 0 deletions packages/types/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ All logs must start with the format: [x.y.z] - yyyy-mm-dd

## [Unreleased]

## [2.1.2] - 2023-05-11
### Added
- Inject the chain id into sandboxes (#1684)

## [2.1.1] - 2023-05-11
### Updated
- `DictionaryQueryCondition` type (#1679)
Expand Down
5 changes: 2 additions & 3 deletions packages/types/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@subql/types",
"version": "2.1.2-0",
"version": "2.1.2",
"description": "",
"homepage": "https://github.com/subquery/subql",
"repository": "github:subquery/subql",
Expand All @@ -20,6 +20,5 @@
},
"devDependencies": {
"@polkadot/api": "^10"
},
"stableVersion": "2.1.1"
}
}

0 comments on commit f5a570c

Please sign in to comment.