diff --git a/CHANGELOG.md b/CHANGELOG.md index 19d3c347..5411bc4a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.13.0](https://github.com/near/near-cli-rs/compare/v0.12.0...v0.13.0) - 2024-07-30 + +### Added +- Automatically exec legacy JS CLI commands for full backward compatibility ([#366](https://github.com/near/near-cli-rs/pull/366)) +- Added the ability to use the TEACH-ME mode ([#360](https://github.com/near/near-cli-rs/pull/360)) +- Added a new subcommand to edit configuration parameters ([#367](https://github.com/near/near-cli-rs/pull/367)) + +### Fixed +- Fixed the fallback implementation of fetching active staking pools ([#369](https://github.com/near/near-cli-rs/pull/369)) + +### Other +- Fixed typos in user prompts and the guide ([#372](https://github.com/near/near-cli-rs/pull/372)) + ## [0.12.0](https://github.com/near/near-cli-rs/compare/v0.11.1...v0.12.0) - 2024-07-09 ### Added diff --git a/Cargo.lock b/Cargo.lock index 72766bcf..367dd58b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2473,7 +2473,7 @@ dependencies = [ [[package]] name = "near-cli-rs" -version = "0.12.0" +version = "0.13.0" dependencies = [ "bip39", "bs58 0.5.1", diff --git a/Cargo.toml b/Cargo.toml index ee190c23..d5c94c26 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "near-cli-rs" -version = "0.12.0" +version = "0.13.0" authors = ["FroVolod ", "Near Inc "] license = "MIT OR Apache-2.0" edition = "2021"