diff --git a/CHANGELOG.md b/CHANGELOG.md index 989fbb0..d12d831 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [UNRELEASED] +## [20240410] + ### Added - Added `wallet_call_with_max_cycles` diff --git a/Cargo.lock b/Cargo.lock index bc2cc0f..ab88c38 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -885,7 +885,7 @@ checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" [[package]] name = "wallet" -version = "0.3.1" +version = "0.3.2" dependencies = [ "base64", "candid", diff --git a/e2e/bash/version.bash b/e2e/bash/version.bash index d4c09e4..087b9b0 100644 --- a/e2e/bash/version.bash +++ b/e2e/bash/version.bash @@ -24,5 +24,5 @@ teardown() { @test "reports the wallet API version" { WALLET_ID=$(dfx identity get-wallet) assert_command dfx canister call "${WALLET_ID}" wallet_api_version "()" - assert_eq '("0.3.1")' + assert_eq '("0.3.2")' } diff --git a/wallet/Cargo.toml b/wallet/Cargo.toml index 2f1c5dc..0461e8a 100644 --- a/wallet/Cargo.toml +++ b/wallet/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wallet" -version = "0.3.1" +version = "0.3.2" authors = ["DFINITY Stiftung "] edition = "2021" rust-version = "1.58.1"