diff --git a/RELEASES.md b/RELEASES.md index be6a7cef9548..3180cf805c7a 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 5bbf1b3fc7ee..ece9fd7ac2f2 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 dba18fd78582..d9be9f2d0953 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 a2ef3ced40c4..032aad715818 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,