From 2eecbca6eb69a206faccff8a61b4bc6d5b0802a6 Mon Sep 17 00:00:00 2001 From: farbanas Date: Tue, 25 Apr 2023 10:05:46 +0200 Subject: [PATCH] bump versions and update changelogs for release v1.1.16 --- CHANGELOG.md | 29 ++++++++++++++----- clients/native/Cargo.toml | 2 +- clients/socks5/Cargo.toml | 2 +- contracts/CHANGELOG.md | 11 +++++++ explorer-api/Cargo.toml | 2 +- gateway/Cargo.toml | 2 +- mixnode/Cargo.toml | 2 +- nym-api/Cargo.toml | 2 +- .../network-requester/Cargo.toml | 2 +- .../network-statistics/Cargo.toml | 2 +- tools/nym-cli/Cargo.toml | 2 +- 11 files changed, 42 insertions(+), 16 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e38d2c4f1a..760c6bacc3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,14 +4,29 @@ Post 1.0.0 release, the changelog format is based on [Keep a Changelog](https:// ## [Unreleased] -- nym-network-statistics properly handles signals ([#3209]) -- add socks5 support for Rust SDK ([#3226], [#3255]) -- add coconut bandwidth credential support for Rust SDK ([#3273]) +## [v1.1.16] (2023-04-25) -[#3209]: https://github.com/nymtech/nym/issues/3209 -[#3226]: https://github.com/nymtech/nym/pull/3226 -[#3255]: https://github.com/nymtech/nym/pull/3255 -[#3273]: https://github.com/nymtech/nym/pull/3273 +- Explorer - Fix sorting function on Stake Saturation. It is currently working per page and not globally ([#3320]) +- Poisson process gets stuck at too slow rate. Rework to more aggressively up-regulate ([#3309]) +- decrease the logging level of warnings associated with clients dropping packets due to gateway being overloaded (I'd say reduce it to debug/trace) - there are few sources of those, e.g. in real and cover traffic streams ([#3299]) +- Make the buffer size in `AvailableReader` depend on packet sizes the client is using + introduce read timeouts ([#3213]) +- Rust SDK - Support coconut, credential storage etc ([#2755]) +- version bump for next release ([#3349]) +- added coconut credential generation example ([#3339]) +- update mix-node setup docs with node description ([#3325]) +- exposed missing gateway commands in nym-cli ([#3324]) +- make sure to clear inner 'ack_map' in 'GatewaysReader' ([#3300]) + +[#3320]: https://github.com/nymtech/nym/issues/3320 +[#3309]: https://github.com/nymtech/nym/issues/3309 +[#3299]: https://github.com/nymtech/nym/issues/3299 +[#3213]: https://github.com/nymtech/nym/issues/3213 +[#2755]: https://github.com/nymtech/nym/issues/2755 +[#3349]: https://github.com/nymtech/nym/pull/3349 +[#3339]: https://github.com/nymtech/nym/pull/3339 +[#3325]: https://github.com/nymtech/nym/pull/3325 +[#3324]: https://github.com/nymtech/nym/pull/3324 +[#3300]: https://github.com/nymtech/nym/pull/3300 ## [v1.1.15] (2023-04-18) diff --git a/clients/native/Cargo.toml b/clients/native/Cargo.toml index f9ca926174..d504ee42ab 100644 --- a/clients/native/Cargo.toml +++ b/clients/native/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nym-client" -version = "1.1.15" +version = "1.1.16" 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 7970956448..78e22b4415 100644 --- a/clients/socks5/Cargo.toml +++ b/clients/socks5/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nym-socks5-client" -version = "1.1.15" +version = "1.1.16" 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/contracts/CHANGELOG.md b/contracts/CHANGELOG.md index 81bc67a5ae..ffa2dba525 100644 --- a/contracts/CHANGELOG.md +++ b/contracts/CHANGELOG.md @@ -2,6 +2,17 @@ ## Unreleased +## [v1.4.0] (2023-04-25) +- Allow mixnode operators to decrease their bond amount without having to rebond (will require a lot of testing EXACT reward values to make sure the "unit delegation" isn't broken afterwards) ([#3233]) +- Fix a few clippy warnings in contract test code ([#3340]) +- Add --all-targets to clippy for contracts ([#3337]) +- A branch with all clippy warnings dealt with in contracts ([#3294]) + +[#3233]: https://github.com/nymtech/nym/issues/3233 +[#3340]: https://github.com/nymtech/nym/pull/3340 +[#3337]: https://github.com/nymtech/nym/pull/3337 +[#3294]: https://github.com/nymtech/nym/pull/3294 + ## [v1.3.1] (2023-04-18) - Add a query to the vesting contract for the amount of delegated tokens towards a particular `mix_id` (might be needed by NG) ([#3228]) diff --git a/explorer-api/Cargo.toml b/explorer-api/Cargo.toml index 37869274c6..05061addbc 100644 --- a/explorer-api/Cargo.toml +++ b/explorer-api/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "explorer-api" -version = "1.1.15" +version = "1.1.16" 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 0b11718237..80d848dfd5 100644 --- a/gateway/Cargo.toml +++ b/gateway/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "nym-gateway" -version = "1.1.15" +version = "1.1.16" authors = [ "Dave Hrycyszyn ", "Jędrzej Stuczyński ", diff --git a/mixnode/Cargo.toml b/mixnode/Cargo.toml index fa34b7b004..9165f2b6c0 100644 --- a/mixnode/Cargo.toml +++ b/mixnode/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "nym-mixnode" -version = "1.1.16" +version = "1.1.17" authors = [ "Dave Hrycyszyn ", "Jędrzej Stuczyński ", diff --git a/nym-api/Cargo.toml b/nym-api/Cargo.toml index daa7da44b3..8ae9f77592 100644 --- a/nym-api/Cargo.toml +++ b/nym-api/Cargo.toml @@ -3,7 +3,7 @@ [package] name = "nym-api" -version = "1.1.16" +version = "1.1.17" authors = [ "Dave Hrycyszyn ", "Jędrzej Stuczyński ", diff --git a/service-providers/network-requester/Cargo.toml b/service-providers/network-requester/Cargo.toml index f28998d99a..375ed31551 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.15" +version = "1.1.16" 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 c4bbda585e..a9dd36b35c 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.15" +version = "1.1.16" 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 504bd3446f..dcceef5d24 100644 --- a/tools/nym-cli/Cargo.toml +++ b/tools/nym-cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nym-cli" -version = "1.1.15" +version = "1.1.16" authors.workspace = true edition = "2021"