From 2b4ae4bd186cc3bf52652b49f72cd9649f479676 Mon Sep 17 00:00:00 2001 From: release-plz Date: Sun, 24 Sep 2023 18:55:10 +0000 Subject: [PATCH] chore: release Signed-off-by: release-plz --- CHANGELOG.md | 16 ++++++++++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 18 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 98ce3bf10..512acf319 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,22 @@ 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-24 + +### Added +- New command export-account ([#226](https://github.com/near/near-cli-rs/pull/226)) +- [**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 +- Switch to near-gas crate ([#240](https://github.com/near/near-cli-rs/pull/240)) +- 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 4d8d094f7..862f67767 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2133,7 +2133,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 605b9b7ff..5cbb94cf0 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"