diff --git a/CHANGELOG.md b/CHANGELOG.md index a428416d6e7..76d134c84c3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ ## [Unreleased] +## [nym-wallet-v1.0.4](https://github.com/nymtech/nym/tree/nym-wallet-v1.0.4) (2022-05-04) + +### Changed + +- all: the default behaviour of validator client is changed to use `broadcast_sync` and poll for transaction inclusion instead of using `broadcast_commit` to deal with timeouts ([#1246]) + ## [v1.0.1](https://github.com/nymtech/nym/tree/v1.0.1) (2022-05-04) ### Added @@ -19,7 +25,6 @@ [#1238]: https://github.com/nymtech/nym/pull/1238 [#1246]: https://github.com/nymtech/nym/pull/1246 - ## [v1.0.0](https://github.com/nymtech/nym/tree/v1.0.0) (2022-05-03) [Full Changelog](https://github.com/nymtech/nym/compare/v0.12.1...v1.0.0) diff --git a/nym-wallet/Cargo.lock b/nym-wallet/Cargo.lock index b1d825e27a8..b544e935318 100644 --- a/nym-wallet/Cargo.lock +++ b/nym-wallet/Cargo.lock @@ -2946,7 +2946,7 @@ dependencies = [ [[package]] name = "nym_wallet" -version = "1.0.3" +version = "1.0.4" dependencies = [ "aes-gcm", "argon2", diff --git a/nym-wallet/src-tauri/Cargo.toml b/nym-wallet/src-tauri/Cargo.toml index d260c22ff6a..ae5e0560114 100644 --- a/nym-wallet/src-tauri/Cargo.toml +++ b/nym-wallet/src-tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nym_wallet" -version = "1.0.3" +version = "1.0.4" description = "Nym Native Wallet" authors = ["Nym Technologies SA"] license = "" diff --git a/nym-wallet/src-tauri/tauri.conf.json b/nym-wallet/src-tauri/tauri.conf.json index a296071c0ae..89a43bd11ee 100644 --- a/nym-wallet/src-tauri/tauri.conf.json +++ b/nym-wallet/src-tauri/tauri.conf.json @@ -1,7 +1,7 @@ { "package": { "productName": "nym-wallet", - "version": "1.0.3" + "version": "1.0.4" }, "build": { "distDir": "../dist",