diff --git a/CHANGELOG.md b/CHANGELOG.md index c04cce1b0a..e728e00506 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,9 +4,20 @@ Post 1.0.0 release, the changelog format is based on [Keep a Changelog](https:// ## [Unreleased] -- Add Ephemera functionality in nym-api ([#3731]) +## [1.1.28] (2023-08-22) + +- [final step3]: add [rust] support to nyxd client in wasm ([#3743]) +- Feature/ephemera upgrade ([#3791]) +- [rust-sdk] feat: make it more convenient to send and receive messages in different tasks ([#3756]) +- feat: validator client refactoring + wasm compatible nyxd client ([#3726]) +- feat: retain connection between client init and run ([#3767]) + +[#3743]: https://github.com/nymtech/nym/issues/3743 +[#3791]: https://github.com/nymtech/nym/pull/3791 +[#3756]: https://github.com/nymtech/nym/pull/3756 +[#3726]: https://github.com/nymtech/nym/pull/3726 +[#3767]: https://github.com/nymtech/nym/pull/3767 -[#3731]: https://github.com/nymtech/nym/pull/3731 ## [1.1.27] (2023-08-16) diff --git a/Cargo.lock b/Cargo.lock index f14848f51b..cc54eee9dc 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2761,7 +2761,7 @@ checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0" [[package]] name = "explorer-api" -version = "1.1.25" +version = "1.1.26" dependencies = [ "chrono", "clap 4.3.21", @@ -5226,7 +5226,7 @@ dependencies = [ [[package]] name = "nym-api" -version = "1.1.26" +version = "1.1.27" dependencies = [ "actix-web", "anyhow", @@ -5373,7 +5373,7 @@ dependencies = [ [[package]] name = "nym-cli" -version = "1.1.25" +version = "1.1.26" dependencies = [ "anyhow", "base64 0.13.1", @@ -5439,7 +5439,7 @@ dependencies = [ [[package]] name = "nym-client" -version = "1.1.25" +version = "1.1.26" dependencies = [ "clap 4.3.21", "dirs 4.0.0", @@ -5737,7 +5737,7 @@ dependencies = [ [[package]] name = "nym-gateway" -version = "1.1.25" +version = "1.1.26" dependencies = [ "anyhow", "async-trait", @@ -5892,7 +5892,7 @@ dependencies = [ [[package]] name = "nym-mixnode" -version = "1.1.26" +version = "1.1.27" dependencies = [ "anyhow", "bs58 0.4.0", @@ -6010,7 +6010,7 @@ dependencies = [ [[package]] name = "nym-network-requester" -version = "1.1.25" +version = "1.1.26" dependencies = [ "anyhow", "async-file-watcher", @@ -6057,7 +6057,7 @@ dependencies = [ [[package]] name = "nym-network-statistics" -version = "1.1.25" +version = "1.1.26" dependencies = [ "dirs 4.0.0", "log", @@ -6215,7 +6215,7 @@ dependencies = [ [[package]] name = "nym-socks5-client" -version = "1.1.25" +version = "1.1.26" dependencies = [ "clap 4.3.21", "lazy_static", diff --git a/clients/native/Cargo.toml b/clients/native/Cargo.toml index 9bf16e89ad..b94b1e7b76 100644 --- a/clients/native/Cargo.toml +++ b/clients/native/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nym-client" -version = "1.1.25" +version = "1.1.26" 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 a574f28985..8532f9d2b7 100644 --- a/clients/socks5/Cargo.toml +++ b/clients/socks5/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nym-socks5-client" -version = "1.1.25" +version = "1.1.26" 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 72724ce6eb..a39e3cb52b 100644 --- a/explorer-api/Cargo.toml +++ b/explorer-api/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "explorer-api" -version = "1.1.25" +version = "1.1.26" 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 25e2b62375..2b71aa1542 100644 --- a/gateway/Cargo.toml +++ b/gateway/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "nym-gateway" -version = "1.1.25" +version = "1.1.26" authors = [ "Dave Hrycyszyn ", "Jędrzej Stuczyński ", diff --git a/mixnode/Cargo.toml b/mixnode/Cargo.toml index 101ac4d513..ec0b3f5f94 100644 --- a/mixnode/Cargo.toml +++ b/mixnode/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "nym-mixnode" -version = "1.1.26" +version = "1.1.27" authors = [ "Dave Hrycyszyn ", "Jędrzej Stuczyński ", diff --git a/nym-api/Cargo.toml b/nym-api/Cargo.toml index cc55f92afc..c9a0b8e8e4 100644 --- a/nym-api/Cargo.toml +++ b/nym-api/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "nym-api" -version = "1.1.26" +version = "1.1.27" authors = [ "Dave Hrycyszyn ", "Jędrzej Stuczyński ", diff --git a/nym-connect/desktop/CHANGELOG.md b/nym-connect/desktop/CHANGELOG.md index 13f449269e..20534c13ef 100644 --- a/nym-connect/desktop/CHANGELOG.md +++ b/nym-connect/desktop/CHANGELOG.md @@ -2,7 +2,13 @@ ## [Unreleased] -## [1.1.27] (2023-08-16) +## [1.1.18] (2023-08-22) + +- refactor(nc-desktop): use userdata storage to save user gateway&sp ([#3723]) + +[#3723]: https://github.com/nymtech/nym/pull/3723 + +## [1.1.17] (2023-08-16) - Add a "Send us your feedback" section in NC (on the main screen) to collect user feedback using Sentry ([#3619]) - NC native android - deploy on FDroid ([#3483]) diff --git a/nym-connect/desktop/package.json b/nym-connect/desktop/package.json index ede5727153..a3a74ab218 100644 --- a/nym-connect/desktop/package.json +++ b/nym-connect/desktop/package.json @@ -1,6 +1,6 @@ { "name": "@nym/nym-connect", - "version": "1.1.17", + "version": "1.1.18", "main": "index.js", "license": "MIT", "scripts": { @@ -115,4 +115,4 @@ "webpack-merge": "^5.8.0", "yaml-loader": "^0.8.0" } -} +} \ No newline at end of file diff --git a/nym-connect/desktop/src-tauri/Cargo.toml b/nym-connect/desktop/src-tauri/Cargo.toml index 192b1bb391..1844688af9 100644 --- a/nym-connect/desktop/src-tauri/Cargo.toml +++ b/nym-connect/desktop/src-tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nym-connect" -version = "1.1.17" +version = "1.1.18" description = "nym-connect" authors = ["Nym Technologies SA"] license = "" diff --git a/nym-connect/desktop/src-tauri/tauri.conf.json b/nym-connect/desktop/src-tauri/tauri.conf.json index 49311b295d..bfbceb21be 100644 --- a/nym-connect/desktop/src-tauri/tauri.conf.json +++ b/nym-connect/desktop/src-tauri/tauri.conf.json @@ -1,7 +1,7 @@ { "package": { "productName": "nym-connect", - "version": "1.1.17" + "version": "1.1.18" }, "build": { "distDir": "../dist", diff --git a/nym-wallet/CHANGELOG.md b/nym-wallet/CHANGELOG.md index 87928a2574..d0b6d0aa6f 100644 --- a/nym-wallet/CHANGELOG.md +++ b/nym-wallet/CHANGELOG.md @@ -2,10 +2,9 @@ ## [Unreleased] -## [1.1.27] (2023-08-17) +## [1.2.7] (2023-08-17) - release due to schema changes in the contract - ## [v1.2.6] (2023-07-18) - [wallet] bugfix: don't send funds for pledge decrease simulation ([#3676]) diff --git a/service-providers/network-requester/Cargo.toml b/service-providers/network-requester/Cargo.toml index 713552f812..9f1fc07c97 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.25" +version = "1.1.26" 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 8c5d7784f0..7ff628cdc6 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.25" +version = "1.1.26" 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 a693b9aa12..e63dcc8225 100644 --- a/tools/nym-cli/Cargo.toml +++ b/tools/nym-cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nym-cli" -version = "1.1.25" +version = "1.1.26" authors.workspace = true edition = "2021"