Skip to content

Commit

Permalink
Release 20231110 (#2156)
Browse files Browse the repository at this point in the history
* error handle on generate command

* [release] 20231110

* release for node

* release for utils

* update version for utils

---------

Co-authored-by: Scott Twiname <[email protected]>
  • Loading branch information
bz888 and stwiname authored Nov 12, 2023
1 parent 6377029 commit 2e541b2
Show file tree
Hide file tree
Showing 33 changed files with 17 additions and 49 deletions.
4 changes: 0 additions & 4 deletions .yarn/versions/22560085.yml

This file was deleted.

Empty file removed .yarn/versions/39bc8793.yml
Empty file.
Empty file removed .yarn/versions/3dd6ec4a.yml
Empty file.
Empty file removed .yarn/versions/3e4923b3.yml
Empty file.
2 changes: 0 additions & 2 deletions .yarn/versions/463ab869.yml

This file was deleted.

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

This file was deleted.

Empty file removed .yarn/versions/59d2e0c2.yml
Empty file.
Empty file removed .yarn/versions/5a192ecc.yml
Empty file.
Empty file removed .yarn/versions/6e6aceca.yml
Empty file.
Empty file removed .yarn/versions/7576fcb4.yml
Empty file.
2 changes: 0 additions & 2 deletions .yarn/versions/76f970e3.yml

This file was deleted.

8 changes: 0 additions & 8 deletions .yarn/versions/778d63b5.yml

This file was deleted.

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

This file was deleted.

Empty file removed .yarn/versions/7d3452bf.yml
Empty file.
4 changes: 0 additions & 4 deletions .yarn/versions/82ee57d8.yml

This file was deleted.

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

This file was deleted.

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

This file was deleted.

Empty file removed .yarn/versions/c625e1d1.yml
Empty file.
Empty file removed .yarn/versions/c83891cd.yml
Empty file.
5 changes: 0 additions & 5 deletions .yarn/versions/cba8a6e1.yml

This file was deleted.

Empty file removed .yarn/versions/ce3a7a3b.yml
Empty file.
2 changes: 0 additions & 2 deletions .yarn/versions/daac94fe.yml

This file was deleted.

Empty file removed .yarn/versions/ef639be1.yml
Empty file.
2 changes: 0 additions & 2 deletions .yarn/versions/f2d57647.yml

This file was deleted.

Empty file removed .yarn/versions/f3404dfe.yml
Empty file.
2 changes: 0 additions & 2 deletions .yarn/versions/f54b79a8.yml

This file was deleted.

Empty file removed .yarn/versions/f888d125.yml
Empty file.
5 changes: 4 additions & 1 deletion packages/node-core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [6.4.0] - 2023-11-10
### Added
- Base yargs config for all SDKs (#2144)
- Support block skipping on unavailable blocks (#2151)
Expand Down Expand Up @@ -483,7 +485,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed
- Move blockchain agnostic code from `node` to `node-core` package. (#1222)

[Unreleased]: https://github.com/subquery/subql/compare/node-core/6.3.0...HEAD
[Unreleased]: https://github.com/subquery/subql/compare/node-core/6.4.0...HEAD
[6.4.0]: https://github.com/subquery/subql/compare/node-core/6.3.0...node-core/6.4.0
[6.3.0]: https://github.com/subquery/subql/compare/node-core/6.2.0...node-core/6.3.0
[6.2.0]: https://github.com/subquery/subql/compare/node-core/6.1.1...node-core/6.2.0
[6.1.1]: https://github.com/subquery/subql/compare/node-core/6.1.0...node-core/6.1.1
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": "6.3.1-4",
"version": "6.4.0",
"description": "Common node features that are agnostic to blockchains",
"homepage": "https://github.com/subquery/subql",
"repository": "github:subquery/subql",
Expand Down Expand Up @@ -46,6 +46,5 @@
},
"devDependencies": {
"@types/async-lock": "^1"
},
"stableVersion": "6.3.1-3"
}
}
5 changes: 4 additions & 1 deletion packages/node/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [3.4.0] - 2023-11-10
### Changed
- Update Polkadot/api to 10.10.1 (#2150)
- Use yargs config from node-core (#2144)
Expand Down Expand Up @@ -1048,7 +1050,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed
- bump @polkadot/api to 3.1.1

[Unreleased]: https://github.com/subquery/subql/compare/node/3.3.0...HEAD
[Unreleased]: https://github.com/subquery/subql/compare/node/3.4.0...HEAD
[3.4.0]: https://github.com/subquery/subql/compare/node/3.3.0...node/3.4.0
[3.3.0]: https://github.com/subquery/subql/compare/node/3.2.0...node/3.3.0
[3.2.0]: https://github.com/subquery/subql/compare/node/3.1.1...node/3.2.0
[3.1.1]: https://github.com/subquery/subql/compare/node/3.1.0...node/3.1.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": "3.3.1-2",
"version": "3.4.0",
"description": "",
"author": "Ian He",
"license": "GPL-3.0",
Expand Down Expand Up @@ -60,6 +60,5 @@
"files": [
"/dist",
"/bin"
],
"stableVersion": "3.3.1-1"
]
}
5 changes: 4 additions & 1 deletion packages/utils/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [2.6.0] - 2023-11-10
### Changed
- Update Polkadot/util to 10.5.1 (#2150)

Expand Down Expand Up @@ -97,7 +99,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed
- Update polkadot/api to 9

[Unreleased]: https://github.com/subquery/subql/compare/utils/2.5.0...HEAD
[Unreleased]: https://github.com/subquery/subql/compare/utils/2.6.0...HEAD
[2.6.0]: https://github.com/subquery/subql/compare/utils/2.5.0...utils/2.6.0
[2.5.0]: https://github.com/subquery/subql/compare/utils/2.4.4...utils/2.5.0
[2.4.4]: https://github.com/subquery/subql/compare/v2.4.3...v2.4.4
[2.4.3]: https://github.com/subquery/subql/compare/v2.4.2...v2.4.3
Expand Down
2 changes: 1 addition & 1 deletion packages/utils/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@subql/utils",
"version": "2.5.0",
"version": "2.6.0",
"description": "",
"packageManager": "[email protected]",
"scripts": {
Expand Down

0 comments on commit 2e541b2

Please sign in to comment.