From 21efdb35c458eda1e2e71b9c06f6d4028cce47d2 Mon Sep 17 00:00:00 2001 From: Stephen Buttolph Date: Wed, 4 Oct 2023 19:25:22 -0400 Subject: [PATCH] Update version for v1.10.12 --- RELEASES.md | 16 ++++++++++++++++ version/compatibility.json | 3 ++- version/constants.go | 2 +- 3 files changed, 19 insertions(+), 2 deletions(-) diff --git a/RELEASES.md b/RELEASES.md index 73e79cc8bda0..baa273be88f0 100644 --- a/RELEASES.md +++ b/RELEASES.md @@ -1,5 +1,21 @@ # Release Notes +## [v1.10.12](https://github.com/ava-labs/avalanchego/releases/tag/v1.10.12) + +This version is backwards compatible to [v1.10.0](https://github.com/ava-labs/avalanchego/releases/tag/v1.10.0). It is optional, but encouraged. + +The plugin version is unchanged at `28` and compatible with versions `v1.10.9 - v1.10.11`. + +### APIs + +### Configs + +### Fixes + +### What's Changed + +**Full Changelog**: https://github.com/ava-labs/avalanchego/compare/v1.10.11...v1.10.12 + ## [v1.10.11](https://github.com/ava-labs/avalanchego/releases/tag/v1.10.11) This version is backwards compatible to [v1.10.0](https://github.com/ava-labs/avalanchego/releases/tag/v1.10.0). It is optional, but encouraged. diff --git a/version/compatibility.json b/version/compatibility.json index 1f500a1497e5..3588566a55aa 100644 --- a/version/compatibility.json +++ b/version/compatibility.json @@ -2,7 +2,8 @@ "28": [ "v1.10.9", "v1.10.10", - "v1.10.11" + "v1.10.11", + "v1.10.12" ], "27": [ "v1.10.5", diff --git a/version/constants.go b/version/constants.go index 11aad9dbe7ec..2dd8db352d6e 100644 --- a/version/constants.go +++ b/version/constants.go @@ -21,7 +21,7 @@ var ( Current = &Semantic{ Major: 1, Minor: 10, - Patch: 11, + Patch: 12, } CurrentApp = &Application{ Major: Current.Major,