diff --git a/CHANGELOG.md b/CHANGELOG.md index 258b36964f..f5a720221c 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] +## [2023.5-rolo] (2023-11-28) + +- Gateway won't open websocket listener until embedded Network Requester becomes available ([#4166]) +- Feature/gateway described nr ([#4147]) +- Bugfix/prerelease versionbump ([#4145]) +- returning 'nil' for non-existing origin as opposed to an empty string ([#4135]) +- using performance^20 when calculating active set selection weight ([#4126]) +- Change default http API timeout from 3s to 10s ([#4117]) + +[#4166]: https://github.com/nymtech/nym/issues/4166 +[#4147]: https://github.com/nymtech/nym/pull/4147 +[#4145]: https://github.com/nymtech/nym/pull/4145 +[#4135]: https://github.com/nymtech/nym/pull/4135 +[#4126]: https://github.com/nymtech/nym/pull/4126 +[#4117]: https://github.com/nymtech/nym/pull/4117 + ## [2023.nyxd-upgrade] (2023-11-22) - Chore/nyxd 043 upgrade ([#3968]) diff --git a/Cargo.lock b/Cargo.lock index c545037965..3b0cd33a50 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -5905,7 +5905,7 @@ dependencies = [ [[package]] name = "nym-api" -version = "1.1.33" +version = "1.1.34" dependencies = [ "actix-web", "anyhow", @@ -6472,7 +6472,7 @@ dependencies = [ [[package]] name = "nym-gateway" -version = "1.1.31" +version = "1.1.32" dependencies = [ "anyhow", "async-trait", diff --git a/gateway/Cargo.toml b/gateway/Cargo.toml index ffaf439c7f..7346f7b5bf 100644 --- a/gateway/Cargo.toml +++ b/gateway/Cargo.toml @@ -4,7 +4,7 @@ [package] name = "nym-gateway" license = "GPL-3" -version = "1.1.31" +version = "1.1.32" authors = [ "Dave Hrycyszyn ", "Jędrzej Stuczyński ", diff --git a/nym-api/Cargo.toml b/nym-api/Cargo.toml index ad781f28e2..514f664cb9 100644 --- a/nym-api/Cargo.toml +++ b/nym-api/Cargo.toml @@ -4,7 +4,7 @@ [package] name = "nym-api" license = "GPL-3" -version = "1.1.33" +version = "1.1.34" authors = [ "Dave Hrycyszyn ", "Jędrzej Stuczyński ",