diff --git a/CHANGELOG.md b/CHANGELOG.md index 039caf1e..b0a0a65c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.18.1](https://github.com/near/near-cli-rs/compare/v0.18.0...v0.18.1) - 2025-01-27 + +### Fixed + +- Use legacy keychain as a fallback storage when system keychain is not supported (e.g. WSL, Codespaces, Docker containers, CI) (#439) + ## [0.18.0](https://github.com/near/near-cli-rs/compare/v0.17.0...v0.18.0) - 2025-01-20 ### Added diff --git a/Cargo.lock b/Cargo.lock index 2284f763..eb311184 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2051,7 +2051,7 @@ dependencies = [ [[package]] name = "near-cli-rs" -version = "0.18.0" +version = "0.18.1" dependencies = [ "bip39", "bs58 0.5.1", diff --git a/Cargo.toml b/Cargo.toml index d91bf46d..cff1bf0c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "near-cli-rs" -version = "0.18.0" +version = "0.18.1" authors = ["FroVolod ", "Near Inc "] license = "MIT OR Apache-2.0" edition = "2021"