From 77dbf2236a27766194bf3a6ec21ac5812ef99580 Mon Sep 17 00:00:00 2001 From: Stephen Buttolph Date: Mon, 10 Jun 2024 14:36:22 -0400 Subject: [PATCH] Update versions for v1.11.8 --- RELEASES.md | 14 ++++++++++++++ version/compatibility.json | 3 ++- version/constants.go | 2 +- 3 files changed, 17 insertions(+), 2 deletions(-) diff --git a/RELEASES.md b/RELEASES.md index 01521a2b449..351f3cda0be 100644 --- a/RELEASES.md +++ b/RELEASES.md @@ -1,5 +1,19 @@ # Release Notes +## [v1.11.8](https://github.com/ava-labs/avalanchego/releases/tag/v1.11.8) + +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 unchanged at `35` and is compatible with versions `v1.11.3-v1.11.7`. + +### APIs + +- Redesigned metrics to use labels rather than custom namespaces. + +### What's Changed + +**Full Changelog**: https://github.com/ava-labs/avalanchego/compare/v1.11.7...v1.11.8 + ## [v1.11.7](https://github.com/ava-labs/avalanchego/releases/tag/v1.11.7) 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/version/compatibility.json b/version/compatibility.json index c2d3525a039..a1596351f37 100644 --- a/version/compatibility.json +++ b/version/compatibility.json @@ -4,7 +4,8 @@ "v1.11.4", "v1.11.5", "v1.11.6", - "v1.11.7" + "v1.11.7", + "v1.11.8" ], "34": [ "v1.11.2" diff --git a/version/constants.go b/version/constants.go index 1e2b809d5a7..2899b37fac6 100644 --- a/version/constants.go +++ b/version/constants.go @@ -26,7 +26,7 @@ var ( Current = &Semantic{ Major: 1, Minor: 11, - Patch: 7, + Patch: 8, } CurrentApp = &Application{ Name: Client,