diff --git a/CHANGELOG.md b/CHANGELOG.md index b5feedc758..bd7f010ef3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,36 @@ Post 1.0.0 release, the changelog format is based on [Keep a Changelog](https:// ## [Unreleased] +## [v1.1.20] (2023-06-06) + +- Explorer - Fix SP supported apps list ([#3458]) +- Investigate if we need to lower `SHUTDOWN_TIMEOUT` in socks5 to zero (or almost zero) ([#3438]) +- Explorer - show all gateways in the default view regardless of the version number ([#3427]) +- service-provider-directory: add signature check when announcing ([#3360]) +- Support functionality for nym-name-service (nym-api, nym-cli, etc) ([#3355]) +- Edit the nym-network-requester to support the enabled-credentials-mode flag ([#3101]) +- [BUG] network requester documentation update ([#3493]) +- removing hardcoded version numbers ([#3485]) +- [BUG] network requester documentation update ([#3481]) +- [BUG] network requester documentation update ([#3469]) +- Sign when announcing service providers to the directory contract ([#3459]) +- mixnode documentation update ([#3435]) +- updated readme with new developer chat links + new docs links ([#3141]) + +[#3458]: https://github.com/nymtech/nym/issues/3458 +[#3438]: https://github.com/nymtech/nym/issues/3438 +[#3427]: https://github.com/nymtech/nym/issues/3427 +[#3360]: https://github.com/nymtech/nym/issues/3360 +[#3355]: https://github.com/nymtech/nym/issues/3355 +[#3101]: https://github.com/nymtech/nym/issues/3101 +[#3493]: https://github.com/nymtech/nym/pull/3493 +[#3485]: https://github.com/nymtech/nym/pull/3485 +[#3481]: https://github.com/nymtech/nym/pull/3481 +[#3469]: https://github.com/nymtech/nym/pull/3469 +[#3459]: https://github.com/nymtech/nym/pull/3459 +[#3435]: https://github.com/nymtech/nym/pull/3435 +[#3141]: https://github.com/nymtech/nym/pull/3141 + ## [v1.1.19] (2023-05-16) - nym-name-service endpoint in nym-api ([#3403]) diff --git a/clients/native/Cargo.toml b/clients/native/Cargo.toml index 90aa3e2c66..fc523e04f4 100644 --- a/clients/native/Cargo.toml +++ b/clients/native/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nym-client" -version = "1.1.19" +version = "1.1.20" authors = ["Dave Hrycyszyn ", "Jędrzej Stuczyński "] description = "Implementation of the Nym Client" edition = "2021" diff --git a/clients/socks5/Cargo.toml b/clients/socks5/Cargo.toml index 152f5a23fa..829c1855d0 100644 --- a/clients/socks5/Cargo.toml +++ b/clients/socks5/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nym-socks5-client" -version = "1.1.19" +version = "1.1.20" authors = ["Dave Hrycyszyn "] description = "A SOCKS5 localhost proxy that converts incoming messages to Sphinx and sends them to a Nym address" edition = "2021" diff --git a/explorer-api/Cargo.toml b/explorer-api/Cargo.toml index d85c7e90bf..4915eae466 100644 --- a/explorer-api/Cargo.toml +++ b/explorer-api/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "explorer-api" -version = "1.1.19" +version = "1.1.20" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/gateway/Cargo.toml b/gateway/Cargo.toml index 457a30070a..f9a629cfe5 100644 --- a/gateway/Cargo.toml +++ b/gateway/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "nym-gateway" -version = "1.1.19" +version = "1.1.20" authors = [ "Dave Hrycyszyn ", "Jędrzej Stuczyński ", diff --git a/mixnode/Cargo.toml b/mixnode/Cargo.toml index 5f3da88b7f..9f85284420 100644 --- a/mixnode/Cargo.toml +++ b/mixnode/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "nym-mixnode" -version = "1.1.20" +version = "1.1.21" authors = [ "Dave Hrycyszyn ", "Jędrzej Stuczyński ", diff --git a/nym-api/Cargo.toml b/nym-api/Cargo.toml index 199b8a9e8c..a1794b1ed0 100644 --- a/nym-api/Cargo.toml +++ b/nym-api/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "nym-api" -version = "1.1.20" +version = "1.1.21" authors = [ "Dave Hrycyszyn ", "Jędrzej Stuczyński ", diff --git a/nym-wallet/CHANGELOG.md b/nym-wallet/CHANGELOG.md index f4474e774c..efbccbc91b 100644 --- a/nym-wallet/CHANGELOG.md +++ b/nym-wallet/CHANGELOG.md @@ -2,6 +2,12 @@ ## [Unreleased] +## [v1.2.4] (2023-06-06) + +- Wallet - Bonding page does not load the node info automatically unless you navigate back and forth from it! ([#3478]) + +[#3478]: https://github.com/nymtech/nym/issues/3478 + ## [v1.2.3] (2023-05-16) - Wallet - Allow users to choose validator under the Advanced Settings 🟢 ([#2489]) diff --git a/nym-wallet/package.json b/nym-wallet/package.json index b2eff151d8..8f410b2eb8 100644 --- a/nym-wallet/package.json +++ b/nym-wallet/package.json @@ -1,6 +1,6 @@ { "name": "@nymproject/nym-wallet-app", - "version": "1.2.3", + "version": "1.2.4", "main": "index.js", "license": "MIT", "scripts": { diff --git a/nym-wallet/src-tauri/Cargo.toml b/nym-wallet/src-tauri/Cargo.toml index fbf5b0b6cd..7f75b533fd 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.3" +version = "1.2.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 d9c8717ac3..7c9d2719f3 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.3" + "version": "1.2.4" }, "build": { "distDir": "../dist", diff --git a/service-providers/network-requester/Cargo.toml b/service-providers/network-requester/Cargo.toml index 9e98516df5..ff19187f9d 100644 --- a/service-providers/network-requester/Cargo.toml +++ b/service-providers/network-requester/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "nym-network-requester" -version = "1.1.19" +version = "1.1.20" authors.workspace = true edition.workspace = true rust-version = "1.65" diff --git a/service-providers/network-statistics/Cargo.toml b/service-providers/network-statistics/Cargo.toml index 75bf5522d0..e0393f73db 100644 --- a/service-providers/network-statistics/Cargo.toml +++ b/service-providers/network-statistics/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nym-network-statistics" -version = "1.1.19" +version = "1.1.20" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/tools/nym-cli/Cargo.toml b/tools/nym-cli/Cargo.toml index b0e4bd84d7..4e1ff220dd 100644 --- a/tools/nym-cli/Cargo.toml +++ b/tools/nym-cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nym-cli" -version = "1.1.19" +version = "1.1.20" authors.workspace = true edition = "2021"