From dd11f14f1cd88506b5a29f8844f68cda037d6f1c Mon Sep 17 00:00:00 2001 From: Stephen Buttolph Date: Wed, 28 Aug 2024 18:30:24 -0400 Subject: [PATCH] Update versions for v1.11.11 --- RELEASES.md | 16 ++++++++++++++++ proto/README.md | 2 +- version/compatibility.json | 3 +++ version/constants.go | 4 ++-- 4 files changed, 22 insertions(+), 3 deletions(-) diff --git a/RELEASES.md b/RELEASES.md index be6a7cef954..3180cf805c7 100644 --- a/RELEASES.md +++ b/RELEASES.md @@ -1,5 +1,21 @@ # Release Notes +## [v1.11.11](https://github.com/ava-labs/avalanchego/releases/tag/v1.11.11) + +This version is backwards compatible to [v1.11.0](https://github.com/ava-labs/avalanchego/releases/tag/v1.11.0). It is optional, but encouraged. + +The plugin version is updated to `37` all plugins must update to be compatible. + +### APIs + +### Fixes + +### What's Changed + +### New Contributors + +**Full Changelog**: https://github.com/ava-labs/avalanchego/compare/v1.11.10...v1.11.11 + ## [v1.11.10](https://github.com/ava-labs/avalanchego/releases/tag/v1.11.10) This version is backwards compatible to [v1.11.0](https://github.com/ava-labs/avalanchego/releases/tag/v1.11.0). It is optional, but encouraged. diff --git a/proto/README.md b/proto/README.md index 5bbf1b3fc7e..ece9fd7ac2f 100644 --- a/proto/README.md +++ b/proto/README.md @@ -1,6 +1,6 @@ # Avalanche gRPC -Now Serving: **Protocol Version 36** +Now Serving: **Protocol Version 37** Protobuf files are hosted at [https://buf.build/ava-labs/avalanche](https://buf.build/ava-labs/avalanche) and diff --git a/version/compatibility.json b/version/compatibility.json index dba18fd7858..d9be9f2d095 100644 --- a/version/compatibility.json +++ b/version/compatibility.json @@ -1,4 +1,7 @@ { + "37": [ + "v1.11.11" + ], "36": [ "v1.11.10" ], diff --git a/version/constants.go b/version/constants.go index a2ef3ced40c..032aad71581 100644 --- a/version/constants.go +++ b/version/constants.go @@ -15,7 +15,7 @@ const ( // RPCChainVMProtocol should be bumped anytime changes are made which // require the plugin vm to upgrade to latest avalanchego release to be // compatible. - RPCChainVMProtocol uint = 36 + RPCChainVMProtocol uint = 37 ) // These are globals that describe network upgrades and node versions @@ -23,7 +23,7 @@ var ( Current = &Semantic{ Major: 1, Minor: 11, - Patch: 10, + Patch: 11, } CurrentApp = &Application{ Name: Client,