diff --git a/CHANGELOG.md b/CHANGELOG.md index c7f65d352c..2c56686c83 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,9 +4,24 @@ Post 1.0.0 release, the changelog format is based on [Keep a Changelog](https:// ## [Unreleased] +## [v1.1.22] (2023-06-20) + +- CLI tool for querying network-requesters ([#3539]) +- Statically link OpenSSL ([#3510]) +- NymConnect - add sentry.io reporting ([#3421]) +- init command does not change version number in config.toml ([#3336]) +- [Bug] Config version does not correspond to binary version ([#3434]) + +[#3539]: https://github.com/nymtech/nym/issues/3539 +[#3510]: https://github.com/nymtech/nym/issues/3510 +[#3421]: https://github.com/nymtech/nym/issues/3421 +[#3336]: https://github.com/nymtech/nym/issues/3336 +[#3434]: https://github.com/nymtech/nym/issues/3434 + ## [v1.1.21] (2023-06-13) -- mixFetch: Change socks5 `SendRequest` to include OrderedMessage index as a field rather than making it serialized inside the `data` field ([#3534]) +- mixFetch: Change socks5 `SendRequest` to include OrderedMessage index as a field rather than making it serialized inside the `data` field + ([#3534]) - Explorer - add more data columns to the Service Provider section: ([#3474]) - network-requester: support report if they run an open proxy using `ControlRequest` API ([#3461]) - Refactor client configs (London discussion) ([#3444]) diff --git a/Cargo.lock b/Cargo.lock index 9f00346e27..3a65ed0106 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1732,7 +1732,7 @@ checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0" [[package]] name = "explorer-api" -version = "1.1.21" +version = "1.1.22" dependencies = [ "chrono", "clap 4.2.7", @@ -3322,7 +3322,7 @@ dependencies = [ [[package]] name = "nym-api" -version = "1.1.22" +version = "1.1.23" dependencies = [ "anyhow", "async-trait", @@ -3423,7 +3423,7 @@ dependencies = [ [[package]] name = "nym-bin-common" -version = "0.5.0" +version = "0.6.0" dependencies = [ "atty", "clap 4.2.7", @@ -3459,7 +3459,7 @@ dependencies = [ [[package]] name = "nym-cli" -version = "1.1.21" +version = "1.1.22" dependencies = [ "anyhow", "base64 0.13.1", @@ -3523,7 +3523,7 @@ dependencies = [ [[package]] name = "nym-client" -version = "1.1.21" +version = "1.1.22" dependencies = [ "clap 4.2.7", "dirs 4.0.0", @@ -3559,7 +3559,7 @@ dependencies = [ [[package]] name = "nym-client-core" -version = "1.1.14" +version = "1.1.15" dependencies = [ "async-trait", "base64 0.21.2", @@ -3797,7 +3797,7 @@ dependencies = [ [[package]] name = "nym-gateway" -version = "1.1.21" +version = "1.1.22" dependencies = [ "anyhow", "async-trait", @@ -3948,7 +3948,7 @@ dependencies = [ [[package]] name = "nym-mixnode" -version = "1.1.22" +version = "1.1.23" dependencies = [ "anyhow", "bs58", @@ -4058,7 +4058,7 @@ dependencies = [ [[package]] name = "nym-network-requester" -version = "1.1.21" +version = "1.1.22" dependencies = [ "anyhow", "async-file-watcher", @@ -4104,7 +4104,7 @@ dependencies = [ [[package]] name = "nym-network-statistics" -version = "1.1.21" +version = "1.1.22" dependencies = [ "dirs 4.0.0", "log", @@ -4263,7 +4263,7 @@ dependencies = [ [[package]] name = "nym-socks5-client" -version = "1.1.21" +version = "1.1.22" dependencies = [ "clap 4.2.7", "lazy_static", diff --git a/clients/native/Cargo.toml b/clients/native/Cargo.toml index f131839b26..56ca474de7 100644 --- a/clients/native/Cargo.toml +++ b/clients/native/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nym-client" -version = "1.1.21" +version = "1.1.22" 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 5c0558200a..8d360b6bb5 100644 --- a/clients/socks5/Cargo.toml +++ b/clients/socks5/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nym-socks5-client" -version = "1.1.21" +version = "1.1.22" 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/clients/webassembly/Cargo.toml b/clients/webassembly/Cargo.toml index 705d23668a..11d1cb131a 100644 --- a/clients/webassembly/Cargo.toml +++ b/clients/webassembly/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "nym-client-wasm" authors = ["Dave Hrycyszyn ", "Jedrzej Stuczynski "] -version = "1.1.0" +version = "1.1.1" edition = "2021" keywords = ["nym", "sphinx", "wasm", "webassembly", "privacy", "client"] license = "Apache-2.0" diff --git a/common/bin-common/Cargo.toml b/common/bin-common/Cargo.toml index b46424d677..5e817b6afd 100644 --- a/common/bin-common/Cargo.toml +++ b/common/bin-common/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nym-bin-common" -version = "0.5.0" +version = "0.6.0" description = "Common code for nym binaries" edition = { workspace = true } authors = { workspace = true } diff --git a/common/client-core/Cargo.toml b/common/client-core/Cargo.toml index 98d7ce6151..b8b1403d86 100644 --- a/common/client-core/Cargo.toml +++ b/common/client-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nym-client-core" -version = "1.1.14" +version = "1.1.15" authors = ["Dave Hrycyszyn "] edition = "2021" rust-version = "1.66" diff --git a/explorer-api/Cargo.toml b/explorer-api/Cargo.toml index 0085320aa7..38e8645ecc 100644 --- a/explorer-api/Cargo.toml +++ b/explorer-api/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "explorer-api" -version = "1.1.21" +version = "1.1.22" 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 edf9bee5eb..76f78fc189 100644 --- a/gateway/Cargo.toml +++ b/gateway/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "nym-gateway" -version = "1.1.21" +version = "1.1.22" authors = [ "Dave Hrycyszyn ", "Jędrzej Stuczyński ", diff --git a/mixnode/Cargo.toml b/mixnode/Cargo.toml index c24c5da0a8..c12e9259b3 100644 --- a/mixnode/Cargo.toml +++ b/mixnode/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "nym-mixnode" -version = "1.1.22" +version = "1.1.23" authors = [ "Dave Hrycyszyn ", "Jędrzej Stuczyński ", diff --git a/nym-api/Cargo.toml b/nym-api/Cargo.toml index 73f299c4c7..51d8243c1f 100644 --- a/nym-api/Cargo.toml +++ b/nym-api/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "nym-api" -version = "1.1.22" +version = "1.1.23" authors = [ "Dave Hrycyszyn ", "Jędrzej Stuczyński ", diff --git a/service-providers/network-requester/Cargo.toml b/service-providers/network-requester/Cargo.toml index 6e70fdef2f..63730bb8bd 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.21" +version = "1.1.22" 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 555d931bdf..076b7c98c1 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.21" +version = "1.1.22" 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 a2c7dfc014..dc69da6e25 100644 --- a/tools/nym-cli/Cargo.toml +++ b/tools/nym-cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nym-cli" -version = "1.1.21" +version = "1.1.22" authors.workspace = true edition = "2021"