diff --git a/RELEASES.md b/RELEASES.md index a70ad214e1f..c88b0225b67 100644 --- a/RELEASES.md +++ b/RELEASES.md @@ -1,5 +1,24 @@ # Release Notes +## [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. + +The plugin version is updated to `36` all plugins must update to be compatible. + +### APIs + +- Renamed `avalanche_{vmName}_plugin_.*` metrics to `avalanche_{vmName}_.*` +- Renamed `avalanche_{vmName}_rpcchainvm_.*` metrics to `avalanche_rpcchainvm_.*` + +### Fixes + +- Fixed block building timer recalculation when anyone can propose. + +### What's Changed + +**Full Changelog**: https://github.com/ava-labs/avalanchego/compare/v1.11.9...v1.11.10 + ## [v1.11.9](https://github.com/ava-labs/avalanchego/releases/tag/v1.11.9) 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 e1ef00f4e99..5bbf1b3fc7e 100644 --- a/proto/README.md +++ b/proto/README.md @@ -1,6 +1,6 @@ # Avalanche gRPC -Now Serving: **Protocol Version 35** +Now Serving: **Protocol Version 36** 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 cdcd18acd1f..dba18fd7858 100644 --- a/version/compatibility.json +++ b/version/compatibility.json @@ -1,4 +1,7 @@ { + "36": [ + "v1.11.10" + ], "35": [ "v1.11.3", "v1.11.4", diff --git a/version/constants.go b/version/constants.go index a65d2a083ab..9e294b98169 100644 --- a/version/constants.go +++ b/version/constants.go @@ -18,7 +18,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 = 35 + RPCChainVMProtocol uint = 36 ) // These are globals that describe network upgrades and node versions @@ -26,7 +26,7 @@ var ( Current = &Semantic{ Major: 1, Minor: 11, - Patch: 9, + Patch: 10, } CurrentApp = &Application{ Name: Client,