From c5d8cd3b17747a6dfb3eae71de711a764ebd69f5 Mon Sep 17 00:00:00 2001 From: Stephen Buttolph Date: Fri, 3 Mar 2023 21:26:30 -0500 Subject: [PATCH] Update versions for v1.9.11 (#2702) --- RELEASES.md | 20 ++++++++++++++++++++ version/compatibility.json | 3 ++- version/constants.go | 2 +- 3 files changed, 23 insertions(+), 2 deletions(-) diff --git a/RELEASES.md b/RELEASES.md index 1902cc7977d4..c9e529b6ef86 100644 --- a/RELEASES.md +++ b/RELEASES.md @@ -1,5 +1,25 @@ # Release Notes +## [v1.9.11](https://github.com/ava-labs/avalanchego/releases/tag/v1.9.11) + +This version is backwards compatible to [v1.9.0](https://github.com/ava-labs/avalanchego/releases/tag/v1.9.0). It is optional, but encouraged. The supported plugin version is `24`. + +### Plugins + +- Removed error from `logging.NoLog#Write` +- Added logging to the static VM factory usage +- Fixed incorrect error being returned from `subprocess.Bootstrap` + +### Ledger + +- Added ledger tx parsing support + +### MerkleDB + +- Added explicit consistency guarantees when committing multiple `merkledb.trieView`s to disk at once +- Removed reliance on premature root calculations for `merkledb.trieView` validity tracking +- Updated `x/merkledb/README.md` + ## [v1.9.10](https://github.com/ava-labs/avalanchego/releases/tag/v1.9.10) This version is backwards compatible to [v1.9.0](https://github.com/ava-labs/avalanchego/releases/tag/v1.9.0). It is optional, but encouraged. The supported plugin version is `24`. diff --git a/version/compatibility.json b/version/compatibility.json index 9024236ac044..6509b43ce4bb 100644 --- a/version/compatibility.json +++ b/version/compatibility.json @@ -1,6 +1,7 @@ { "24": [ - "v1.9.10" + "v1.9.10", + "v1.9.11" ], "23": [ "v1.9.9" diff --git a/version/constants.go b/version/constants.go index b2378b3270ba..a031cbaeae93 100644 --- a/version/constants.go +++ b/version/constants.go @@ -21,7 +21,7 @@ var ( Current = &Semantic{ Major: 1, Minor: 9, - Patch: 10, + Patch: 11, } CurrentApp = &Application{ Major: Current.Major,