From e1f29d7b55a9f37ed77383fc7c61e7af2c42d2ed Mon Sep 17 00:00:00 2001 From: Ceyhun Onur Date: Fri, 1 Mar 2024 15:42:00 +0100 Subject: [PATCH] bump versions for v0.13.1 (#505) * bump versions * fix avago in release md --- RELEASES.md | 6 ++++++ go.mod | 2 +- go.sum | 4 ++-- plugin/evm/version.go | 2 +- scripts/versions.sh | 2 +- 5 files changed, 11 insertions(+), 5 deletions(-) diff --git a/RELEASES.md b/RELEASES.md index 469aaf54b6..2a4adcff81 100644 --- a/RELEASES.md +++ b/RELEASES.md @@ -1,5 +1,11 @@ # Release Notes +## [v0.13.1](https://github.com/ava-labs/coreth/releases/tag/v0.13.1) + +- Bump AvalancheGo to v1.11.2 +- Remove Legacy Gossipper +- Tune default gossip parameters + ## [v0.13.0](https://github.com/ava-labs/coreth/releases/tag/v0.13.0) - Bump AvalancheGo to v1.11.1 diff --git a/go.mod b/go.mod index dc3e3a22e6..b728b2b9fb 100644 --- a/go.mod +++ b/go.mod @@ -4,7 +4,7 @@ go 1.21 require ( github.com/VictoriaMetrics/fastcache v1.10.0 - github.com/ava-labs/avalanchego v1.11.2-rc.8 + github.com/ava-labs/avalanchego v1.11.2 github.com/cespare/cp v0.1.0 github.com/davecgh/go-spew v1.1.1 github.com/deckarep/golang-set/v2 v2.1.0 diff --git a/go.sum b/go.sum index aeafc82618..1a9ea18f1d 100644 --- a/go.sum +++ b/go.sum @@ -54,8 +54,8 @@ github.com/ajg/form v1.5.1/go.mod h1:uL1WgH+h2mgNtvBq0339dVnzXdBETtL2LeUXaIv25UY github.com/allegro/bigcache v1.2.1-0.20190218064605-e24eb225f156 h1:eMwmnE/GDgah4HI848JfFxHt+iPb26b4zyfspmqY0/8= github.com/allegro/bigcache v1.2.1-0.20190218064605-e24eb225f156/go.mod h1:Cb/ax3seSYIx7SuZdm2G2xzfwmv3TPSk2ucNfQESPXM= github.com/armon/consul-api v0.0.0-20180202201655-eb2c6b5be1b6/go.mod h1:grANhF5doyWs3UAsr3K4I6qtAmlQcZDesFNEHPZAzj8= -github.com/ava-labs/avalanchego v1.11.2-rc.8 h1:fq67PkmuuUgQ3hrOgJc2jWXs9ufXEooXd3pd/Qr7Cpw= -github.com/ava-labs/avalanchego v1.11.2-rc.8/go.mod h1:oWC8sKlrThmV6fmwLo4clJV9kENVqfCjQIcxQ5L+S0E= +github.com/ava-labs/avalanchego v1.11.2 h1:8iodZ+RjqpRwHdiXPPtvaNt72qravge7voGzw3yPRzg= +github.com/ava-labs/avalanchego v1.11.2/go.mod h1:oTVnF9idL57J4LM/6RByTmKhI4QvV6OCnF99ysyBljE= github.com/aymerick/raymond v2.0.3-0.20180322193309-b565731e1464+incompatible/go.mod h1:osfaiScAUVup+UC9Nfq76eWqDhXlp+4UYaA8uhTBO6g= github.com/beorn7/perks v1.0.1 h1:VlbKKnNfV8bJzeqoa4cOKqO6bYr3WgKZxO8Z16+hsOM= github.com/beorn7/perks v1.0.1/go.mod h1:G2ZrVWU2WbWT9wwq4/hrbKbnv/1ERSJQ0ibhJ6rlkpw= diff --git a/plugin/evm/version.go b/plugin/evm/version.go index 0f9e303b52..473f3ed626 100644 --- a/plugin/evm/version.go +++ b/plugin/evm/version.go @@ -11,7 +11,7 @@ var ( // GitCommit is set by the build script GitCommit string // Version is the version of Coreth - Version string = "v0.13.0" + Version string = "v0.13.1" ) func init() { diff --git a/scripts/versions.sh b/scripts/versions.sh index 850132b89c..967bf9ca13 100644 --- a/scripts/versions.sh +++ b/scripts/versions.sh @@ -6,4 +6,4 @@ set -euo pipefail # Don't export them as they're used in the context of other calls -avalanche_version=${AVALANCHE_VERSION:-'v1.11.2-rc.8'} +avalanche_version=${AVALANCHE_VERSION:-'v1.11.2'}