Skip to content

Commit

Permalink
[release] 20231020 (#2113)
Browse files Browse the repository at this point in the history
* [release] 20231020

* add release to types*
  • Loading branch information
jiqiang90 authored Oct 20, 2023
1 parent 04f8125 commit e214cb9
Show file tree
Hide file tree
Showing 9 changed files with 30 additions and 24 deletions.
3 changes: 0 additions & 3 deletions .yarn/versions/4fbc75de.yml

This file was deleted.

9 changes: 6 additions & 3 deletions packages/node-core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,13 @@ 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]
## Added

## [6.1.0] - 2023-10-20
### Added
- Add in-memory cache to be used in sandbox #(2110)

### Fixed
- Fixed poi migration init check, and improve logging
- Fixed poi migration init check, and improve logging (#2112)

## [6.0.4] - 2023-10-18
### Fixed
Expand Down Expand Up @@ -446,7 +448,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.0.4...HEAD
[Unreleased]: https://github.com/subquery/subql/compare/node-core/6.1.0...HEAD
[6.1.0]: https://github.com/subquery/subql/compare/node-core/6.0.4...node-core/6.1.0
[6.0.4]: https://github.com/subquery/subql/compare/node-core/6.0.3...node-core/6.0.4
[6.0.3]: https://github.com/subquery/subql/compare/node-core/6.0.2...node-core/6.0.3
[6.0.2]: https://github.com/subquery/subql/compare/node-core/6.0.1...node-core/6.0.2
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.0.5-1",
"version": "6.1.0",
"description": "Common node features that are agnostic to blockchains",
"homepage": "https://github.com/subquery/subql",
"repository": "github:subquery/subql",
Expand Down Expand Up @@ -45,6 +45,5 @@
},
"devDependencies": {
"@types/async-lock": "^1"
},
"stableVersion": "6.0.5-0"
}
}
7 changes: 6 additions & 1 deletion packages/node/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,12 @@ 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.1.0] - 2023-10-20
### Added
- Inject in-memory cache to sandbox (#2110)
### Fixed
- Bump with `@subq/node-core` 3.1.0 , fixed poi migration init check, and improve logging

## [3.0.8] - 2023-10-18
### Fixed
Expand Down Expand Up @@ -1017,7 +1021,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.0.8...HEAD
[Unreleased]: https://github.com/subquery/subql/compare/v3.1.0...HEAD
[3.1.0]: https://github.com/subquery/subql/compare/v3.0.8...v3.1.0
[3.0.8]: https://github.com/subquery/subql/compare/node/3.0.7...node/3.0.8
[3.0.7]: https://github.com/subquery/subql/compare/node/3.0.6...node/3.0.7
[3.0.6]: https://github.com/subquery/subql/compare/node/3.0.5...node/3.0.6
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.0.9-0",
"version": "3.1.0",
"description": "",
"author": "Ian He",
"license": "GPL-3.0",
Expand Down Expand Up @@ -60,6 +60,5 @@
"files": [
"/dist",
"/bin"
],
"stableVersion": "3.0.8"
]
}
8 changes: 4 additions & 4 deletions packages/types-core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,11 @@ 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]

## [0.2.0] - 2023-10-20
### Added
- Add cache to injected globals (#2110)

### [0.1.1] - 2023-10-03
### Changed
- Update `ProjectManifestV1_0_0` with generic networkConfig (#2061)

Expand All @@ -20,8 +21,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added
- Initial release of new package containing types common to all chains


[Unreleased]: https://github.com/subquery/subql/compare/types-core/0.1.1...HEAD
[0.1.1]: https://github.com/subquery/subql/compare/types-core/0.1.0...types-core/0.1.1
[Unreleased]: https://github.com/subquery/subql/compare/types-core/0.2.0...HEAD
[0.2.0]: https://github.com/subquery/subql/compare/types-core/0.1.0...types-core/0.2.0
[0.1.0]: https://github.com/subquery/subql/compare/types-core/0.0.1...types-core/0.1.0
[0.0.1]: https://github.com/subquery/subql/tag/types-core/0.0.1
5 changes: 2 additions & 3 deletions packages/types-core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@subql/types-core",
"version": "0.1.2-1",
"version": "0.2.0",
"description": "",
"homepage": "https://github.com/subquery/subql",
"repository": "github:subquery/subql",
Expand All @@ -17,6 +17,5 @@
],
"dependencies": {
"package-json-type": "^1.0.3"
},
"stableVersion": "0.1.2-0"
}
}
7 changes: 6 additions & 1 deletion packages/types/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]

## [3.2.0] - 2023-10-20
### Changed
- Version bump with `types-core` 0.2.0

## [3.1.2] - 2023-10-04
### Fixed
- `@subql/types-core` being a devDep instead of a dep
Expand Down Expand Up @@ -204,7 +208,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added
- support block handler

[Unreleased]: https://github.com/subquery/subql/compare/types/3.1.2...HEAD
[Unreleased]: https://github.com/subquery/subql/compare/types/3.2.0...HEAD
[3.2.0]: https://github.com/subquery/subql/compare/types/3.1.2...types/3.2.0
[3.1.2]: https://github.com/subquery/subql/compare/types/3.1.1...types/3.1.2
[3.1.1]: https://github.com/subquery/subql/compare/types/3.1.0...types/3.1.1
[3.1.0]: https://github.com/subquery/subql/compare/types/3.0.1...types/3.1.0
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": "3.1.3-1",
"version": "3.2.0",
"description": "",
"homepage": "https://github.com/subquery/subql",
"repository": "github:subquery/subql",
Expand All @@ -24,6 +24,5 @@
},
"devDependencies": {
"@polkadot/api": "^10"
},
"stableVersion": "3.1.3-0"
}
}

0 comments on commit e214cb9

Please sign in to comment.