Skip to content

Commit

Permalink
[release] 20220215 (#805)
Browse files Browse the repository at this point in the history
  • Loading branch information
jiqiang90 authored Feb 15, 2022
1 parent c0f119e commit ba54082
Show file tree
Hide file tree
Showing 8 changed files with 24 additions and 12 deletions.
Empty file removed .yarn/versions/31f096e2.yml
Empty file.
Empty file removed .yarn/versions/68292ad5.yml
Empty file.
7 changes: 6 additions & 1 deletion packages/cli/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]

## [0.20.1] - 2022-02-15
### Fixed
- Patch release with @subql/validator version bump, in order to fix validation issue.

## [0.20.0] - 2022-02-09
### Added
- Add support for dynamic data sources (#773)
Expand Down Expand Up @@ -146,7 +150,8 @@ All logs must start with the format: [x.y.z] - yyyy-mm-dd
- support subcommand codegen
- support subcommand init

[Unreleased]: https://github.com/subquery/subql/compare/cli/0.20.0...HEAD
[Unreleased]: https://github.com/subquery/subql/compare/cli/0.20.1...HEAD
[0.20.1]: https://github.com/subquery/subql/compare/cli/0.20.0...cli/0.20.1
[0.20.0]: https://github.com/subquery/subql/compare/cli/0.19.0...cli/0.20.0
[0.19.0]: https://github.com/subquery/subql/compare/cli/0.18.0...cli/0.19.0
[0.18.0]: https://github.com/subquery/subql/compare/cli/0.17.0...cli/0.18.0
Expand Down
5 changes: 2 additions & 3 deletions packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@subql/cli",
"description": "cli for subquery",
"version": "0.20.0",
"version": "0.20.1",
"author": "Ian He",
"bin": {
"subql": "./bin/run"
Expand Down Expand Up @@ -74,6 +74,5 @@
"version": "oclif-dev readme && git add README.md",
"format": "prettier --write \"src/**/*.ts\""
},
"types": "lib/index.d.ts",
"stableVersion": "0.19.1-8"
"types": "lib/index.d.ts"
}
7 changes: 6 additions & 1 deletion packages/node/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.28.1] - 2022-02-15
### Fixed
- Fixed issue that node stop fetch block when set batch size to 1. (#802)

## [0.28.0] - 2022-02-09
### Added
- Support running the indexer from locations other than the filesystem, and refactor `SubqueryProject` class (#511)
Expand Down Expand Up @@ -408,7 +412,8 @@ Priority: high for projects use dictionary
### Changed
- bump @polkadot/api to 3.1.1

[Unreleased]: https://github.com/subquery/subql/compare/node/0.28.0...HEAD
[Unreleased]: https://github.com/subquery/subql/compare/node/0.28.1...HEAD
[0.28.1]: https://github.com/subquery/subql/compare/node/0.28.0...node/0.28.1
[0.28.0]: https://github.com/subquery/subql/compare/node/0.27.2...node/0.28.0
[0.27.2]: https://github.com/subquery/subql/compare/node/0.27.1...node/0.27.2
[0.27.1]: https://github.com/subquery/subql/compare/node/0.27.0...node/0.27.1
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": "0.28.1-0",
"version": "0.28.1",
"description": "",
"author": "Ian He",
"license": "Apache-2.0",
Expand Down Expand Up @@ -64,6 +64,5 @@
"files": [
"/dist",
"/bin"
],
"stableVersion": "0.28.0"
]
}
7 changes: 6 additions & 1 deletion packages/validator/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]

## [0.4.4] - 2022-02-15
### Fixed
- Fix chainTypes validation when load from yaml or json (#804)

## [0.4.3] - 2022-02-09
### Changed
- Move readers from validator to common (#551)
Expand Down Expand Up @@ -46,7 +50,8 @@ All logs must start with the format: [x.y.z] - yyyy-mm-dd
### Added
- init release: support validation of subquery project

[Unreleased]: https://github.com/subquery/subql/compare/v0.4.3...HEAD
[Unreleased]: https://github.com/subquery/subql/compare/v0.4.4...HEAD
[0.4.4]: https://github.com/subquery/subql/compare/query/0.4.3...query/0.4.4
[0.4.3]: https://github.com/subquery/subql/compare/query/0.4.2...query/0.4.3
[0.4.2]: https://github.com/subquery/subql/compare/query/0.4.1...query/0.4.2
[0.4.1]: https://github.com/subquery/subql/compare/query/0.4.0...query/0.4.1
Expand Down
5 changes: 2 additions & 3 deletions packages/validator/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@subql/validator",
"version": "0.4.4-0",
"version": "0.4.4",
"description": "to validate subquery project",
"homepage": "https://github.com/subquery/subql",
"repository": "github:subquery/subql",
Expand All @@ -24,6 +24,5 @@
},
"devDependencies": {
"@types/js-yaml": "^4.0.5"
},
"stableVersion": "0.4.3"
}
}

0 comments on commit ba54082

Please sign in to comment.