diff --git a/nym-wallet/CHANGELOG.md b/nym-wallet/CHANGELOG.md index 146e6174ed9..aba29abef08 100644 --- a/nym-wallet/CHANGELOG.md +++ b/nym-wallet/CHANGELOG.md @@ -2,6 +2,16 @@ ## [Unreleased] +## [2024.13-magura] (2024-11-18) + +- bugfix: [wallet] displaying delegations for native nymnodes ([#5087]) +- bugfix: wallet backend fixes ([#5070]) +- Feature/wallet bonding fixes ([#5064]) + +[#5087]: https://github.com/nymtech/nym/pull/5087 +[#5070]: https://github.com/nymtech/nym/pull/5070 +[#5064]: https://github.com/nymtech/nym/pull/5064 + ## [v1.2.13] (2024-05-08) - Bug fix: wallet delegations list is empty when RPC node doesn't hold block ([#4565]) diff --git a/nym-wallet/package.json b/nym-wallet/package.json index 3d97eefd26e..341da85fb14 100644 --- a/nym-wallet/package.json +++ b/nym-wallet/package.json @@ -1,6 +1,6 @@ { "name": "@nymproject/nym-wallet-app", - "version": "1.2.14", + "version": "1.2.15", "license": "MIT", "main": "index.js", "scripts": { diff --git a/nym-wallet/src-tauri/Cargo.toml b/nym-wallet/src-tauri/Cargo.toml index 88032e5efb2..fcf0f6417e0 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.2.14" +version = "1.2.15" 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 0067868c376..e493efdfedc 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.2.14" + "version": "1.2.15" }, "build": { "distDir": "../dist",