From c2a1ed855b9464a0d7fe1b70bac16aa70ed5d3f0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C4=99drzej=20Stuczy=C5=84ski?= Date: Thu, 26 Nov 2020 15:15:42 +0000 Subject: [PATCH] Release/v0.9.2 (#474) * Updated version numbers * Updated changelog --- CHANGELOG.md | 17 ++++++++++++++++- Cargo.lock | 14 +++++++------- clients/client-core/Cargo.toml | 2 +- clients/native/Cargo.toml | 2 +- clients/socks5/Cargo.toml | 2 +- explorer/Cargo.lock | 2 +- explorer/Cargo.toml | 2 +- gateway/Cargo.toml | 2 +- mixnode/Cargo.toml | 2 +- network-monitor/Cargo.toml | 2 +- service-providers/network-requester/Cargo.toml | 2 +- 11 files changed, 32 insertions(+), 17 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fa18a672b1..1c91bf854d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## [v0.9.2](https://github.com/nymtech/nym/tree/v0.9.2) (2020-11-26) + +[Full Changelog](https://github.com/nymtech/nym/compare/v0.9.1...v0.9.2) + +This release brings networking improvements, eliminating blocking calls and improving mixnode and gateway scalability. + +**Fixed bugs:** + +- Putting initial packet onto the queue when establishing connection [\#471](https://github.com/nymtech/nym/pull/471) ([jstuczyn](https://github.com/jstuczyn)) + +**Merged pull requests:** + +- Minor mixnet client code simplification and optimization [\#472](https://github.com/nymtech/nym/pull/472) ([jstuczyn](https://github.com/jstuczyn)) + ## [v0.9.1](https://github.com/nymtech/nym/tree/v0.9.1) (2020-11-24) [Full Changelog](https://github.com/nymtech/nym/compare/v0.9.0...v0.9.1) @@ -33,6 +47,7 @@ See the changelog for detailed release notes. - Gateway reconnections \(simple\) [\#457](https://github.com/nymtech/nym/issues/457) - Slow down network monitor sending rate [\#455](https://github.com/nymtech/nym/issues/455) - Deploy the new explorer on the same box as metrics. [\#433](https://github.com/nymtech/nym/issues/433) +- Too many open files [\#366](https://github.com/nymtech/nym/issues/366) - nym-mixnode doesn't bind to any port \(Ubuntu 20.04\) [\#290](https://github.com/nymtech/nym/issues/290) **Merged pull requests:** @@ -249,6 +264,7 @@ This release introduces, among other things, the following improvements: - could not count to ten properly [\#262](https://github.com/nymtech/nym/pull/262) ([ststefa](https://github.com/ststefa)) - build\(deps\): bump websocket-extensions from 0.1.3 to 0.1.4 in /clients/webassembly/js-example [\#261](https://github.com/nymtech/nym/pull/261) ([dependabot[bot]](https://github.com/apps/dependabot)) - add disabling feature 'offline-test' for network-dependent tests [\#260](https://github.com/nymtech/nym/pull/260) ([hyperfekt](https://github.com/hyperfekt)) +- Filtering compatible node versions [\#259](https://github.com/nymtech/nym/pull/259) ([jstuczyn](https://github.com/jstuczyn)) ## [v0.7.0](https://github.com/nymtech/nym/tree/v0.7.0) (2020-06-08) @@ -312,7 +328,6 @@ See the [changelog](https://github.com/nymtech/nym/blob/develop/CHANGELOG.md) fo **Merged pull requests:** -- Filtering compatible node versions [\#259](https://github.com/nymtech/nym/pull/259) ([jstuczyn](https://github.com/jstuczyn)) - systemd service unit example [\#257](https://github.com/nymtech/nym/pull/257) ([ststefa](https://github.com/ststefa)) - renaming desktop to native client [\#251](https://github.com/nymtech/nym/pull/251) ([futurechimp](https://github.com/futurechimp)) - Adding a pipenv dependencies file to the python client example [\#250](https://github.com/nymtech/nym/pull/250) ([futurechimp](https://github.com/futurechimp)) diff --git a/Cargo.lock b/Cargo.lock index edfdad98d0..b0f7337bc2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -351,7 +351,7 @@ dependencies = [ [[package]] name = "client-core" -version = "0.9.1" +version = "0.9.2" dependencies = [ "config", "crypto", @@ -1512,7 +1512,7 @@ dependencies = [ [[package]] name = "nym-client" -version = "0.9.1" +version = "0.9.2" dependencies = [ "clap", "client-core", @@ -1563,7 +1563,7 @@ dependencies = [ [[package]] name = "nym-gateway" -version = "0.9.1" +version = "0.9.2" dependencies = [ "clap", "config", @@ -1593,7 +1593,7 @@ dependencies = [ [[package]] name = "nym-mixnode" -version = "0.9.1" +version = "0.9.2" dependencies = [ "bs58", "clap", @@ -1622,7 +1622,7 @@ dependencies = [ [[package]] name = "nym-network-monitor" -version = "0.9.1" +version = "0.9.2" dependencies = [ "clap", "crypto", @@ -1643,7 +1643,7 @@ dependencies = [ [[package]] name = "nym-network-requester" -version = "0.9.1" +version = "0.9.2" dependencies = [ "clap", "dirs 2.0.2", @@ -1663,7 +1663,7 @@ dependencies = [ [[package]] name = "nym-socks5-client" -version = "0.9.1" +version = "0.9.2" dependencies = [ "clap", "client-core", diff --git a/clients/client-core/Cargo.toml b/clients/client-core/Cargo.toml index 682592e338..0895394e04 100644 --- a/clients/client-core/Cargo.toml +++ b/clients/client-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "client-core" -version = "0.9.1" +version = "0.9.2" authors = ["Dave Hrycyszyn "] edition = "2018" diff --git a/clients/native/Cargo.toml b/clients/native/Cargo.toml index d08d76515c..96c1320d11 100644 --- a/clients/native/Cargo.toml +++ b/clients/native/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nym-client" -version = "0.9.1" +version = "0.9.2" authors = ["Dave Hrycyszyn ", "Jędrzej Stuczyński "] edition = "2018" diff --git a/clients/socks5/Cargo.toml b/clients/socks5/Cargo.toml index c8930fcfe8..c4ce7ddc41 100644 --- a/clients/socks5/Cargo.toml +++ b/clients/socks5/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nym-socks5-client" -version = "0.9.1" +version = "0.9.2" authors = ["Dave Hrycyszyn "] edition = "2018" diff --git a/explorer/Cargo.lock b/explorer/Cargo.lock index 738e0c9127..2bc2088af5 100644 --- a/explorer/Cargo.lock +++ b/explorer/Cargo.lock @@ -959,7 +959,7 @@ dependencies = [ [[package]] name = "nym-explorer" -version = "0.9.0" +version = "0.9.2" dependencies = [ "clap", "futures-util", diff --git a/explorer/Cargo.toml b/explorer/Cargo.toml index 7622d6a955..09a0446ba8 100644 --- a/explorer/Cargo.toml +++ b/explorer/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nym-explorer" -version = "0.9.0" +version = "0.9.2" authors = ["dave ", "Jedrzej Stuczynski "] edition = "2018" diff --git a/gateway/Cargo.toml b/gateway/Cargo.toml index 5b0622d712..819223a6eb 100644 --- a/gateway/Cargo.toml +++ b/gateway/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nym-gateway" -version = "0.9.1" +version = "0.9.2" authors = ["Dave Hrycyszyn ", "Jędrzej Stuczyński "] edition = "2018" diff --git a/mixnode/Cargo.toml b/mixnode/Cargo.toml index b081fd2a70..7c9120dabe 100644 --- a/mixnode/Cargo.toml +++ b/mixnode/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nym-mixnode" -version = "0.9.1" +version = "0.9.2" authors = ["Dave Hrycyszyn ", "Jędrzej Stuczyński "] edition = "2018" diff --git a/network-monitor/Cargo.toml b/network-monitor/Cargo.toml index c463c0762e..1e5c0a831e 100644 --- a/network-monitor/Cargo.toml +++ b/network-monitor/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nym-network-monitor" -version = "0.9.1" +version = "0.9.2" authors = ["Dave Hrycyszyn ", "Jędrzej Stuczyński "] edition = "2018" diff --git a/service-providers/network-requester/Cargo.toml b/service-providers/network-requester/Cargo.toml index 326cb33365..9acf292c7e 100644 --- a/service-providers/network-requester/Cargo.toml +++ b/service-providers/network-requester/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "nym-network-requester" -version = "0.9.1" +version = "0.9.2" authors = ["Dave Hrycyszyn ", "Jędrzej Stuczyński "] edition = "2018"