diff --git a/CHANGELOG.md b/CHANGELOG.md index 680e599..e6e0d6a 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] +## [20230530] + ### Fixed Upgraded `agent-js` packages so that the wallet can work on icp0.io domain as intended. diff --git a/Cargo.lock b/Cargo.lock index 50d2ab7..ab7da2e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1037,7 +1037,7 @@ checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" [[package]] name = "wallet" -version = "0.3.0" +version = "0.3.1" dependencies = [ "base64", "candid", diff --git a/e2e/bash/version.bash b/e2e/bash/version.bash index f700ac4..d4c09e4 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.0")' + assert_eq '("0.3.1")' } diff --git a/wallet/Cargo.toml b/wallet/Cargo.toml index 73a88a1..eaeb7d7 100644 --- a/wallet/Cargo.toml +++ b/wallet/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wallet" -version = "0.3.0" +version = "0.3.1" authors = ["DFINITY Stiftung "] edition = "2021" rust-version = "1.58.1"