diff --git a/CHANGELOG.md b/CHANGELOG.md index 5411bc4a..a3e58930 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.14.0](https://github.com/near/near-cli-rs/compare/v0.13.0...v0.14.0) - 2024-08-13 + +### Fixed +- Require at least one access key to be selected in interactive mode when deleting a key ([#385](https://github.com/near/near-cli-rs/pull/385)) +- Handle delegated stake errors gracefully and display a warning message instead of failing the view-account-summary command completely ([#382](https://github.com/near/near-cli-rs/pull/382)) +- Entering the name of the function in interactive mode ([#379](https://github.com/near/near-cli-rs/pull/379)) +- Fixed a typo in `inspect` output about missing ABI support ([#374](https://github.com/near/near-cli-rs/pull/374)) + +### Other +- updated near-* to 0.24.0, bumped up rust version ([#381](https://github.com/near/near-cli-rs/pull/381)) +- Added videos to the README for installation process on Windows ([#378](https://github.com/near/near-cli-rs/pull/378)) +- Cleaned up error message reporting by disabling env section of color_eyre report ([#380](https://github.com/near/near-cli-rs/pull/380)) + ## [0.13.0](https://github.com/near/near-cli-rs/compare/v0.12.0...v0.13.0) - 2024-07-30 ### Added diff --git a/Cargo.lock b/Cargo.lock index f2ec026d..72994d65 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2120,7 +2120,7 @@ dependencies = [ [[package]] name = "near-cli-rs" -version = "0.13.0" +version = "0.14.0" dependencies = [ "bip39", "bs58 0.5.1", diff --git a/Cargo.toml b/Cargo.toml index 364b5cb7..9d3176fd 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "near-cli-rs" -version = "0.13.0" +version = "0.14.0" authors = ["FroVolod ", "Near Inc "] license = "MIT OR Apache-2.0" edition = "2021"