From c21a79b10ac366a73123c316efa81b272431e939 Mon Sep 17 00:00:00 2001 From: Stephen Buttolph Date: Tue, 29 Mar 2022 13:32:46 -0400 Subject: [PATCH] Bump version to v1.7.9 (#1294) --- RELEASES.md | 12 ++++++++++++ version/constants.go | 2 +- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/RELEASES.md b/RELEASES.md index 393405bde42e..cd4d29620c46 100644 --- a/RELEASES.md +++ b/RELEASES.md @@ -1,5 +1,17 @@ # Release Notes +## [v1.7.9](https://github.com/ava-labs/avalanchego/releases/tag/v1.7.9) + +This version is backwards compatible to [v1.7.0](https://github.com/ava-labs/avalanchego/releases/tag/v1.7.0). It is optional, but encouraged. + +### Updates + +- Improved subnet gossip to only send messages to nodes participating in that subnet. +- Fixed inlined VM initialization to correctly register static APIs. +- Added logging for file descriptor limit errors. +- Removed dead code from network packer. +- Improved logging of invalid hash length errors. + ## [v1.7.8](https://github.com/ava-labs/avalanchego/releases/tag/v1.7.8) This version is backwards compatible to [v1.7.0](https://github.com/ava-labs/avalanchego/releases/tag/v1.7.0). It is optional, but encouraged. diff --git a/version/constants.go b/version/constants.go index 80820560a25a..3b15ba7134ef 100644 --- a/version/constants.go +++ b/version/constants.go @@ -11,7 +11,7 @@ import ( // These are globals that describe network upgrades and node versions var ( - Current = NewDefaultVersion(1, 7, 8) + Current = NewDefaultVersion(1, 7, 9) CurrentApp = NewDefaultApplication(constants.PlatformName, Current.Major(), Current.Minor(), Current.Patch()) MinimumCompatibleVersion = NewDefaultApplication(constants.PlatformName, 1, 7, 0) PrevMinimumCompatibleVersion = NewDefaultApplication(constants.PlatformName, 1, 6, 0)