diff --git a/CHANGELOG.md b/CHANGELOG.md index 98ce3bf10..ab9ee5b6d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.6.0](https://github.com/near/near-cli-rs/compare/v0.5.2...v0.6.0) - 2023-09-09 + +### Added +- [**breaking**] Added system keychain support for windows & linux, so now all major desktop operating systems are supported! ([#232](https://github.com/near/near-cli-rs/pull/232)) +- order networks selection based on the selected account id (bubble up more relevant networks) ([#225](https://github.com/near/near-cli-rs/pull/225)) + +### Fixed +- CLI must return a non-zero exit code when function call (as-transaction) fails ([#238](https://github.com/near/near-cli-rs/pull/238)) +- legacy view-function call with --base64 was not recognized ([#237](https://github.com/near/near-cli-rs/pull/237)) +- self update is now pointing to the right archive name ([#234](https://github.com/near/near-cli-rs/pull/234)) + +### Other +- New command to view contract storage state ([#239](https://github.com/near/near-cli-rs/pull/239)) + ## [0.5.2](https://github.com/near/near-cli-rs/compare/v0.5.1...v0.5.2) - 2023-08-17 ### Added diff --git a/Cargo.lock b/Cargo.lock index fbe63c42e..01a97640f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2068,7 +2068,7 @@ dependencies = [ [[package]] name = "near-cli-rs" -version = "0.5.2" +version = "0.6.0" dependencies = [ "bip39", "bs58 0.5.0", diff --git a/Cargo.toml b/Cargo.toml index 8037acbb5..84f158175 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "near-cli-rs" -version = "0.5.2" +version = "0.6.0" authors = ["FroVolod ", "Near Inc "] license = "MIT OR Apache-2.0" edition = "2021"