diff --git a/CHANGELOG.md b/CHANGELOG.md index 2df4f7e732..1421d63898 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,20 @@ Post 1.0.0 release, the changelog format is based on [Keep a Changelog](https:// ## [Unreleased] +## [v1.1.30-twix] (2023-09-05) + +- geo_aware_provider: fix too much filtering of gateways ([#3826]) +- network-requester: add description to config ([#3799]) +- Speedy mode - selects gateway based on latency in medium / speedy mode ([#3770]) +- Chore/enable versioning ([#3768]) +- Create explorer-client and use in geo aware provider ([#3824]) + +[#3826]: https://github.com/nymtech/nym/pull/3826 +[#3799]: https://github.com/nymtech/nym/pull/3799 +[#3770]: https://github.com/nymtech/nym/issues/3770 +[#3768]: https://github.com/nymtech/nym/pull/3768 +[#3824]: https://github.com/nymtech/nym/pull/3824 + ## [v1.1.29-snickers] (2023-08-29) - Add EXPLORER_API configurable url ([#3810]) diff --git a/Cargo.lock b/Cargo.lock index b60d064a0e..5e8ae04207 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2768,7 +2768,7 @@ checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0" [[package]] name = "explorer-api" -version = "1.1.27" +version = "1.1.28" dependencies = [ "chrono", "clap 4.3.21", @@ -5638,7 +5638,7 @@ dependencies = [ [[package]] name = "nym-api" -version = "1.1.28" +version = "1.1.29" dependencies = [ "actix-web", "anyhow", @@ -5785,7 +5785,7 @@ dependencies = [ [[package]] name = "nym-cli" -version = "1.1.27" +version = "1.1.28" dependencies = [ "anyhow", "base64 0.13.1", @@ -5858,7 +5858,7 @@ dependencies = [ [[package]] name = "nym-client" -version = "1.1.27" +version = "1.1.28" dependencies = [ "clap 4.3.21", "dirs 4.0.0", @@ -6166,7 +6166,7 @@ dependencies = [ [[package]] name = "nym-gateway" -version = "1.1.27" +version = "1.1.28" dependencies = [ "anyhow", "async-trait", @@ -6321,7 +6321,7 @@ dependencies = [ [[package]] name = "nym-mixnode" -version = "1.1.28" +version = "1.1.29" dependencies = [ "anyhow", "bs58 0.4.0", @@ -6439,7 +6439,7 @@ dependencies = [ [[package]] name = "nym-network-requester" -version = "1.1.27" +version = "1.1.28" dependencies = [ "anyhow", "async-file-watcher", @@ -6486,7 +6486,7 @@ dependencies = [ [[package]] name = "nym-network-statistics" -version = "1.1.27" +version = "1.1.28" dependencies = [ "dirs 4.0.0", "log", @@ -6651,7 +6651,7 @@ dependencies = [ [[package]] name = "nym-socks5-client" -version = "1.1.27" +version = "1.1.28" dependencies = [ "clap 4.3.21", "lazy_static", diff --git a/clients/native/Cargo.toml b/clients/native/Cargo.toml index 351f8fb295..1143f4ad60 100644 --- a/clients/native/Cargo.toml +++ b/clients/native/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nym-client" -version = "1.1.27" +version = "1.1.28" 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 a52422b5d0..c13f3b8525 100644 --- a/clients/socks5/Cargo.toml +++ b/clients/socks5/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nym-socks5-client" -version = "1.1.27" +version = "1.1.28" 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 10ca849b3d..bd6fed0ae6 100644 --- a/explorer-api/Cargo.toml +++ b/explorer-api/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "explorer-api" -version = "1.1.27" +version = "1.1.28" 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 8e907a9eee..7fb1cc29d6 100644 --- a/gateway/Cargo.toml +++ b/gateway/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "nym-gateway" -version = "1.1.27" +version = "1.1.28" authors = [ "Dave Hrycyszyn ", "Jędrzej Stuczyński ", diff --git a/mixnode/Cargo.toml b/mixnode/Cargo.toml index 0a9edd82b9..91f99e9f81 100644 --- a/mixnode/Cargo.toml +++ b/mixnode/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "nym-mixnode" -version = "1.1.28" +version = "1.1.29" authors = [ "Dave Hrycyszyn ", "Jędrzej Stuczyński ", diff --git a/nym-api/Cargo.toml b/nym-api/Cargo.toml index 29be65e7bb..3fb1c48506 100644 --- a/nym-api/Cargo.toml +++ b/nym-api/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "nym-api" -version = "1.1.28" +version = "1.1.29" authors = [ "Dave Hrycyszyn ", "Jędrzej Stuczyński ", diff --git a/nym-connect/desktop/CHANGELOG.md b/nym-connect/desktop/CHANGELOG.md index ab9c1da100..371cf6441e 100644 --- a/nym-connect/desktop/CHANGELOG.md +++ b/nym-connect/desktop/CHANGELOG.md @@ -2,6 +2,14 @@ ## [Unreleased] +## [v1.1.20-twix] (2023-09-05) + +- nym-connect directory error handling ([#3830]) +- NC - it should not be possible to toggle speedy mode while the connection is active ([#3816]) + +[#3830]: https://github.com/nymtech/nym/pull/3830 +[#3816]: https://github.com/nymtech/nym/issues/3816 + ## [v1.1.19-snickers] (2023-08-29) - NymConnect sometimes fails to connect because the gateway it fetches from the validator-api to use is running an old version (of the gateway binary) ([#3788]) diff --git a/nym-connect/desktop/package.json b/nym-connect/desktop/package.json index a69bc51486..00eececabe 100644 --- a/nym-connect/desktop/package.json +++ b/nym-connect/desktop/package.json @@ -1,6 +1,6 @@ { "name": "@nym/nym-connect", - "version": "1.1.19", + "version": "1.1.20", "main": "index.js", "license": "MIT", "scripts": { diff --git a/nym-connect/desktop/src-tauri/Cargo.toml b/nym-connect/desktop/src-tauri/Cargo.toml index 133b94a921..6b4de12a5f 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.19" +version = "1.1.20" 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 555daaa1b7..46c8645e64 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.19" + "version": "1.1.20" }, "build": { "distDir": "../dist", diff --git a/service-providers/network-requester/Cargo.toml b/service-providers/network-requester/Cargo.toml index cf66ae325e..67ed6b41fa 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.27" +version = "1.1.28" 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 197ee6e49a..e718333802 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.27" +version = "1.1.28" 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 d571f87d7f..455da72803 100644 --- a/tools/nym-cli/Cargo.toml +++ b/tools/nym-cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nym-cli" -version = "1.1.27" +version = "1.1.28" authors.workspace = true edition = "2021"