diff --git a/CHANGELOG.md b/CHANGELOG.md index 4134fbebda..fe08ef04e3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,28 @@ Post 1.0.0 release, the changelog format is based on [Keep a Changelog](https:// ## [Unreleased] +## [2023.1-milka] (2023-09-24) + +- custom Debug impl for mix::Node and gateway::Node ([#3930]) +- added forceTls argument to 'MixFetchOptsSimple' ([#3907]) +- Enable loop cover traffic by default in NR ([#3904]) +- Fix all the cargo warnings ([#3899]) +- [Issue] nym-socks5-client crash on UDP request ([#3898]) +- Feature/gateway inbuilt nr ([#3877]) +- removed queued mixnet migration that was already run ([#3872]) +- [feat] Socks5 and Native client: run with hardcoded topology ([#3866]) +- Introduce a local network requester directly inside a gateway ([#3838]) + +[#3930]: https://github.com/nymtech/nym/pull/3930 +[#3907]: https://github.com/nymtech/nym/pull/3907 +[#3904]: https://github.com/nymtech/nym/pull/3904 +[#3899]: https://github.com/nymtech/nym/pull/3899 +[#3898]: https://github.com/nymtech/nym/issues/3898 +[#3877]: https://github.com/nymtech/nym/pull/3877 +[#3872]: https://github.com/nymtech/nym/pull/3872 +[#3866]: https://github.com/nymtech/nym/pull/3866 +[#3838]: https://github.com/nymtech/nym/issues/3838 + ## [v1.1.31-kitkat] (2023-09-12) - feat: add name to `TaskClient` ([#3844]) diff --git a/clients/native/Cargo.toml b/clients/native/Cargo.toml index 8b7f695260..8e025c7e09 100644 --- a/clients/native/Cargo.toml +++ b/clients/native/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nym-client" -version = "1.1.29" +version = "1.1.30" 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 17f5d17074..7ea0469c74 100644 --- a/clients/socks5/Cargo.toml +++ b/clients/socks5/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nym-socks5-client" -version = "1.1.29" +version = "1.1.30" 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 79323fe3fe..ffb2138321 100644 --- a/explorer-api/Cargo.toml +++ b/explorer-api/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "explorer-api" -version = "1.1.29" +version = "1.1.30" 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 2e4541e63b..1dd1531099 100644 --- a/gateway/Cargo.toml +++ b/gateway/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "nym-gateway" -version = "1.1.29" +version = "1.1.30" authors = [ "Dave Hrycyszyn ", "Jędrzej Stuczyński ", diff --git a/mixnode/Cargo.toml b/mixnode/Cargo.toml index 9efff54500..37268c654d 100644 --- a/mixnode/Cargo.toml +++ b/mixnode/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "nym-mixnode" -version = "1.1.30" +version = "1.1.31" authors = [ "Dave Hrycyszyn ", "Jędrzej Stuczyński ", diff --git a/nym-api/Cargo.toml b/nym-api/Cargo.toml index 5f5f6a9bd6..4389d27de8 100644 --- a/nym-api/Cargo.toml +++ b/nym-api/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "nym-api" -version = "1.1.30" +version = "1.1.31" authors = [ "Dave Hrycyszyn ", "Jędrzej Stuczyński ", diff --git a/service-providers/network-requester/Cargo.toml b/service-providers/network-requester/Cargo.toml index 28fe7a0212..7e63ac74c1 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.29" +version = "1.1.30" 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 3c40a1ee53..97d9d36cbc 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.29" +version = "1.1.30" 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 deaa5dd10b..def3dc32eb 100644 --- a/tools/nym-cli/Cargo.toml +++ b/tools/nym-cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nym-cli" -version = "1.1.29" +version = "1.1.30" authors.workspace = true edition = "2021"