diff --git a/packages/cli/CHANGELOG.md b/packages/cli/CHANGELOG.md index 6312cbae4d..a6566cf0f4 100644 --- a/packages/cli/CHANGELOG.md +++ b/packages/cli/CHANGELOG.md @@ -5,8 +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] + +## [4.0.1] - 2023-10-10 ### Fixed - Fix `codegen` logic for Cosmos Manifests (#2073) +- Error when generating manifest from ts (#2075) ## [4.0.0] - 2023-10-04 ### Fixed @@ -462,7 +465,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - support subcommand codegen - support subcommand init -[Unreleased]: https://github.com/subquery/subql/compare/cli/4.0.0...HEAD +[Unreleased]: https://github.com/subquery/subql/compare/cli/4.0.1...HEAD +[4.0.1]: https://github.com/subquery/subql/compare/cli/4.0.0...cli/4.0.1 [4.0.0]: https://github.com/subquery/subql/compare/cli/3.6.1...cli/4.0.0 [3.6.1]: https://github.com/subquery/subql/compare/cli/3.6.0...cli/3.6.1 [3.6.0]: https://github.com/subquery/subql/compare/cli/3.5.1...cli/3.6.0 diff --git a/packages/cli/package.json b/packages/cli/package.json index 6fb3d54445..b995d59a65 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,7 +1,7 @@ { "name": "@subql/cli", "description": "cli for subquery", - "version": "4.0.1-2", + "version": "4.0.1", "author": "Ian He", "bin": { "subql": "./bin/run" @@ -90,6 +90,5 @@ "types": "lib/index.d.ts", "resolutions": { "node-fetch": "2.6.7" - }, - "stableVersion": "4.0.1-1" + } }