diff --git a/.yarn/versions/0a0d8c6f.yml b/.yarn/versions/0a0d8c6f.yml deleted file mode 100644 index 196786880..000000000 --- a/.yarn/versions/0a0d8c6f.yml +++ /dev/null @@ -1,3 +0,0 @@ -undecided: - - "@subql/common-cosmos" - - "@subql/types-cosmos" diff --git a/packages/common-cosmos/CHANGELOG.md b/packages/common-cosmos/CHANGELOG.md index 13fb53ffc..d38e193e3 100644 --- a/packages/common-cosmos/CHANGELOG.md +++ b/packages/common-cosmos/CHANGELOG.md @@ -6,11 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [3.0.2] - 2023-10-12 ### Changed - Version bump with `@subql/common` 3.1.2 ## [3.0.1] - 2023-10-05 -### Update +### Changed - Bump `subql/types-cosmos` ## [3.0.0] - 2023-10-04 @@ -29,7 +30,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Support for cosmwasm contract abi to ts `codegen` (#168) ## [2.4.1] - 2023-08-24 -### Updated +### Changed - Updated `telescope` config for codegen optimisation(#166) ## [2.4.0] - 2023-08-24 @@ -90,7 +91,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Fix chainTypes not being in deployments ## [0.0.5] - 2022-06-15 -[Unreleased]: https://github.com/subquery/subql-cosmos/compare/common-cosmos/3.0.1...HEAD +[Unreleased]: https://github.com/subquery/subql-cosmos/compare/common-cosmos/3.0.2...HEAD +[3.0.2]: https://github.com/subquery/subql-cosmos/compare/common-cosmos/3.0.1...common-cosmos/3.0.2 [3.0.1]: https://github.com/subquery/subql-cosmos/compare/common-cosmos/3.0.0...common-cosmos/3.0.1 [3.0.0]: https://github.com/subquery/subql-cosmos/compare/common-cosmos/2.5.1...common-cosmos/3.0.0 [2.5.1]: https://github.com/subquery/subql-cosmos/compare/common-cosmos/2.5.0...common-cosmos/2.5.1 diff --git a/packages/common-cosmos/package.json b/packages/common-cosmos/package.json index cb535b1d9..5f7162e88 100644 --- a/packages/common-cosmos/package.json +++ b/packages/common-cosmos/package.json @@ -1,6 +1,6 @@ { "name": "@subql/common-cosmos", - "version": "3.0.2-0", + "version": "3.0.2", "description": "", "scripts": { "build": "rm -rf dist && tsc -b", @@ -44,6 +44,5 @@ "ejs": "3.1.7", "lodash": "4.17.21", "rimraf": "^3.0.2" - }, - "stableVersion": "3.0.1" + } } diff --git a/packages/node/CHANGELOG.md b/packages/node/CHANGELOG.md index 179cbe1c1..7e4f1e2e6 100644 --- a/packages/node/CHANGELOG.md +++ b/packages/node/CHANGELOG.md @@ -6,6 +6,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [3.0.2] - 2023-10-12 ### Changed - debug has changed from a boolean to a string to allow scoping debug log level (#2077) @@ -15,9 +16,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Fixed AutoQueue timeout issue. - Fixed Poi sync could block DB IO and drop connection issue. - ## [3.0.1] - 2023-10-05 -### Update +### Changed - Bump `subql/types-cosmos` ## [3.0.0] - 2023-10-04 @@ -277,7 +277,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added - Init release -[Unreleased]: https://github.com/subquery/subql-cosmos/compare/node-cosmos/3.0.1...HEAD +[Unreleased]: https://github.com/subquery/subql-cosmos/compare/node-cosmos/3.0.2...HEAD +[3.0.2]: https://github.com/subquery/subql-cosmos/compare/node-cosmos/3.0.1...node-cosmos/3.0.2 [3.0.1]: https://github.com/subquery/subql-cosmos/compare/node-cosmos/3.0.0...node-cosmos/3.0.1 [3.0.0]: https://github.com/subquery/subql-cosmos/compare/node-cosmos/2.10.3...node-cosmos/3.0.0 [2.10.3]: https://github.com/subquery/subql-cosmos/compare/node-cosmos/2.10.2...node-cosmos/2.10.3 diff --git a/packages/node/package.json b/packages/node/package.json index be4d7527a..cf20515de 100644 --- a/packages/node/package.json +++ b/packages/node/package.json @@ -1,6 +1,6 @@ { "name": "@subql/node-cosmos", - "version": "3.0.2-0", + "version": "3.0.2", "description": "", "author": "Naveen Veluswamy", "license": "GPL-3.0", @@ -61,6 +61,5 @@ "files": [ "/dist", "/bin" - ], - "stableVersion": "3.0.1" + ] } diff --git a/packages/node/src/yargs.ts b/packages/node/src/yargs.ts index c4668770f..c6ea8a40f 100644 --- a/packages/node/src/yargs.ts +++ b/packages/node/src/yargs.ts @@ -53,7 +53,7 @@ export const yargsOptions = yargs(hideBin(process.argv)) }), handler: (argv) => { initLogger( - argv.debug as boolean, + argv.debug as string, argv.outputFmt as 'json' | 'colored', argv.logLevel as string | undefined, ); diff --git a/packages/types/CHANGELOG.md b/packages/types/CHANGELOG.md index 39ef816a5..345999157 100644 --- a/packages/types/CHANGELOG.md +++ b/packages/types/CHANGELOG.md @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [3.0.2] - 2023-10-12 +### Changed +- Bump with `@subql/types-core` 0.1.1 (#186) + ## [3.0.1] - 2023-10-05 ### Fixed - Fixed RuntimeDatasourceTemplate's generic typing (#182) @@ -73,7 +77,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Fix chainTypes not being in deployments ## [0.0.5] - 2022-06-15 -[Unreleased]: https://github.com/subquery/subql-cosmos/compare/types/3.0.1...HEAD +[Unreleased]: https://github.com/subquery/subql-cosmos/compare/types/3.0.2...HEAD +[3.0.2]: https://github.com/subquery/subql-cosmos/compare/types/3.0.1...types/3.0.2 [3.0.1]: https://github.com/subquery/subql-cosmos/compare/types/3.0.0...types/3.0.1 [3.0.0]: https://github.com/subquery/subql-cosmos/compare/types/2.2.0...types/3.0.0 [2.2.1]: https://github.com/subquery/subql-cosmos/compare/types/2.2.0...types/2.2.1 diff --git a/packages/types/package.json b/packages/types/package.json index 621cade5a..5aaae1615 100644 --- a/packages/types/package.json +++ b/packages/types/package.json @@ -1,6 +1,6 @@ { "name": "@subql/types-cosmos", - "version": "3.0.2-0", + "version": "3.0.2", "description": "", "homepage": "https://github.com/subquery/subql", "repository": "github:subquery/subql", @@ -19,6 +19,5 @@ "@cosmjs/proto-signing": "^0.30.1", "@cosmjs/stargate": "^0.30.1", "@subql/types-core": "^0.1.1" - }, - "stableVersion": "3.0.1" + } }