Skip to content

Commit

Permalink
Update versions for v1.11.10
Browse files Browse the repository at this point in the history
  • Loading branch information
StephenButtolph committed Jul 23, 2024
1 parent f4d8a3c commit 04cdadc
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 3 deletions.
19 changes: 19 additions & 0 deletions RELEASES.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
2 changes: 1 addition & 1 deletion proto/README.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
3 changes: 3 additions & 0 deletions version/compatibility.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
{
"36": [
"v1.11.10"
],
"35": [
"v1.11.3",
"v1.11.4",
Expand Down
4 changes: 2 additions & 2 deletions version/constants.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,15 @@ 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
var (
Current = &Semantic{
Major: 1,
Minor: 11,
Patch: 9,
Patch: 10,
}
CurrentApp = &Application{
Name: Client,
Expand Down

0 comments on commit 04cdadc

Please sign in to comment.