diff --git a/CHANGELOG.md b/CHANGELOG.md index a998c1e782..e58f5e8b5f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,22 @@ Post 1.0.0 release, the changelog format is based on [Keep a Changelog](https:// ## [Unreleased] +## [2026.9-venaco] (2026-05-06) + +- Fix for v9 IPR ([#6710]) +- Only init SHARED_CLIENT if requested ([#6708]) +- Fixes to crates and CI ([#6686]) +- Return ipv6 addresses as well ([#6684]) +- Fix invalid ticket spend ([#6683]) +- Block non-public IPR/NR checks ([#6670]) + +[#6710]: https://github.com/nymtech/nym/pull/6710 +[#6708]: https://github.com/nymtech/nym/pull/6708 +[#6686]: https://github.com/nymtech/nym/pull/6686 +[#6684]: https://github.com/nymtech/nym/pull/6684 +[#6683]: https://github.com/nymtech/nym/pull/6683 +[#6670]: https://github.com/nymtech/nym/pull/6670 + ## [2026.8-urda] (2026-04-20) - Include all gateways in the returned list ([#6649]) diff --git a/Cargo.lock b/Cargo.lock index 8952675fde..c916944568 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -5635,7 +5635,7 @@ dependencies = [ [[package]] name = "nym-api" -version = "1.1.78" +version = "1.1.79" dependencies = [ "anyhow", "async-trait", @@ -5880,7 +5880,7 @@ dependencies = [ [[package]] name = "nym-cli" -version = "1.1.75" +version = "1.1.76" dependencies = [ "anyhow", "base64 0.22.1", @@ -5963,7 +5963,7 @@ dependencies = [ [[package]] name = "nym-client" -version = "1.1.75" +version = "1.1.76" dependencies = [ "bs58", "clap", @@ -7374,7 +7374,7 @@ dependencies = [ [[package]] name = "nym-network-requester" -version = "1.1.76" +version = "1.1.77" dependencies = [ "addr", "anyhow", @@ -7424,7 +7424,7 @@ dependencies = [ [[package]] name = "nym-node" -version = "1.30.0" +version = "1.31.0" dependencies = [ "anyhow", "arc-swap", @@ -7976,7 +7976,7 @@ dependencies = [ [[package]] name = "nym-socks5-client" -version = "1.1.75" +version = "1.1.76" dependencies = [ "bs58", "clap", @@ -8774,7 +8774,7 @@ dependencies = [ [[package]] name = "nymvisor" -version = "0.1.40" +version = "0.1.41" dependencies = [ "anyhow", "bytes", diff --git a/clients/native/Cargo.toml b/clients/native/Cargo.toml index 63b0ff2ba2..83e9bd5d97 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.75" +version = "1.1.76" 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 2b0dad092b..a22ad47a08 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.75" +version = "1.1.76" authors = ["Dave Hrycyszyn "] edition = "2021" license.workspace = true diff --git a/nym-api/Cargo.toml b/nym-api/Cargo.toml index b4caee8ae4..93f2e44db4 100644 --- a/nym-api/Cargo.toml +++ b/nym-api/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "nym-api" -version = "1.1.78" +version = "1.1.79" authors.workspace = true edition = "2021" license = "GPL-3.0" diff --git a/nym-node/Cargo.toml b/nym-node/Cargo.toml index 5aa9ada3e5..574d41d60a 100644 --- a/nym-node/Cargo.toml +++ b/nym-node/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "nym-node" -version = "1.30.0" +version = "1.31.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 754fd52387..c55c845e97 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.76" +version = "1.1.77" 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 e40d9c7fae..f1f8836a30 100644 --- a/tools/nym-cli/Cargo.toml +++ b/tools/nym-cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nym-cli" -version = "1.1.75" +version = "1.1.76" authors.workspace = true edition = "2021" license.workspace = true diff --git a/tools/nymvisor/Cargo.toml b/tools/nymvisor/Cargo.toml index 3596905d9d..f8dc2249cd 100644 --- a/tools/nymvisor/Cargo.toml +++ b/tools/nymvisor/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nymvisor" -version = "0.1.40" +version = "0.1.41" authors.workspace = true edition.workspace = true license.workspace = true