diff --git a/CHANGELOG.md b/CHANGELOG.md index f41a9eb2d6..a998c1e782 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,18 @@ Post 1.0.0 release, the changelog format is based on [Keep a Changelog](https:// ## [Unreleased] +## [2026.8-urda] (2026-04-20) + +- Include all gateways in the returned list ([#6649]) +- Optimize GW probe in NS agent ([#6636]) +- Max/sdk docrs ([#6566]) +- Max/sdk stream wrapper ([#6320]) + +[#6649]: https://github.com/nymtech/nym/pull/6649 +[#6636]: https://github.com/nymtech/nym/pull/6636 +[#6566]: https://github.com/nymtech/nym/pull/6566 +[#6320]: https://github.com/nymtech/nym/pull/6320 + ## [2026.7-tola] (2026-04-07) - Simon/ecash contract serde fix ([#6634]) diff --git a/Cargo.lock b/Cargo.lock index f0f3f85101..a1015be7fb 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -5635,7 +5635,7 @@ dependencies = [ [[package]] name = "nym-api" -version = "1.1.77" +version = "1.1.78" dependencies = [ "anyhow", "async-trait", @@ -5880,7 +5880,7 @@ dependencies = [ [[package]] name = "nym-cli" -version = "1.1.74" +version = "1.1.75" dependencies = [ "anyhow", "base64 0.22.1", @@ -5963,7 +5963,7 @@ dependencies = [ [[package]] name = "nym-client" -version = "1.1.74" +version = "1.1.75" dependencies = [ "bs58", "clap", @@ -7372,7 +7372,7 @@ dependencies = [ [[package]] name = "nym-network-requester" -version = "1.1.75" +version = "1.1.76" dependencies = [ "addr", "anyhow", @@ -7422,7 +7422,7 @@ dependencies = [ [[package]] name = "nym-node" -version = "1.29.0" +version = "1.30.0" dependencies = [ "anyhow", "arc-swap", @@ -7974,7 +7974,7 @@ dependencies = [ [[package]] name = "nym-socks5-client" -version = "1.1.74" +version = "1.1.75" dependencies = [ "bs58", "clap", @@ -8772,7 +8772,7 @@ dependencies = [ [[package]] name = "nymvisor" -version = "0.1.39" +version = "0.1.40" dependencies = [ "anyhow", "bytes", diff --git a/clients/native/Cargo.toml b/clients/native/Cargo.toml index 32321ce650..63b0ff2ba2 100644 --- a/clients/native/Cargo.toml +++ b/clients/native/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "nym-client" description = "Implementation of the Nym Client" -version = "1.1.74" +version = "1.1.75" authors = ["Dave Hrycyszyn ", "Jędrzej Stuczyński "] edition = "2021" license.workspace = true diff --git a/clients/socks5/Cargo.toml b/clients/socks5/Cargo.toml index 186ff54caa..2b0dad092b 100644 --- a/clients/socks5/Cargo.toml +++ b/clients/socks5/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "nym-socks5-client" description = "A SOCKS5 localhost proxy that converts incoming messages to Sphinx and sends them to a Nym address" -version = "1.1.74" +version = "1.1.75" authors = ["Dave Hrycyszyn "] edition = "2021" license.workspace = true diff --git a/nym-api/Cargo.toml b/nym-api/Cargo.toml index 446d463ce9..b4caee8ae4 100644 --- a/nym-api/Cargo.toml +++ b/nym-api/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "nym-api" -version = "1.1.77" +version = "1.1.78" authors.workspace = true edition = "2021" license = "GPL-3.0" diff --git a/nym-node/Cargo.toml b/nym-node/Cargo.toml index 6d41224654..5aa9ada3e5 100644 --- a/nym-node/Cargo.toml +++ b/nym-node/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "nym-node" -version = "1.29.0" +version = "1.30.0" authors.workspace = true edition.workspace = true license = "GPL-3.0" diff --git a/service-providers/network-requester/Cargo.toml b/service-providers/network-requester/Cargo.toml index 91b0ca6f5e..754fd52387 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.75" +version = "1.1.76" authors.workspace = true edition.workspace = true license = "GPL-3.0" diff --git a/tools/nym-cli/Cargo.toml b/tools/nym-cli/Cargo.toml index 1c5bced200..e40d9c7fae 100644 --- a/tools/nym-cli/Cargo.toml +++ b/tools/nym-cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nym-cli" -version = "1.1.74" +version = "1.1.75" authors.workspace = true edition = "2021" license.workspace = true diff --git a/tools/nymvisor/Cargo.toml b/tools/nymvisor/Cargo.toml index f61d3c10b9..3596905d9d 100644 --- a/tools/nymvisor/Cargo.toml +++ b/tools/nymvisor/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nymvisor" -version = "0.1.39" +version = "0.1.40" authors.workspace = true edition.workspace = true license.workspace = true