From 754db224c5dc0565c285830a4b32211cfe9fc45c Mon Sep 17 00:00:00 2001 From: Darioush Jalali Date: Thu, 23 May 2024 16:10:05 -0400 Subject: [PATCH] bump verions, notes for v0.13.4 release (#562) --- RELEASES.md | 2 ++ go.mod | 4 ++-- go.sum | 4 ++-- scripts/versions.sh | 2 +- 4 files changed, 7 insertions(+), 5 deletions(-) diff --git a/RELEASES.md b/RELEASES.md index 74d2f4f765..0614251f26 100644 --- a/RELEASES.md +++ b/RELEASES.md @@ -1,6 +1,8 @@ # Release Notes ## [v0.13.4](https://github.com/ava-labs/coreth/releases/tag/v0.13.4) +- Fixes snapshot use when state sync was explicitly enabled +- Fixes v0.13.3 locking regression in async snapshot generation - Update go-ethereum to v1.13.8 - Bump AvalancheGo to v1.11.6 - Bump golang version requirement to 1.21.10 diff --git a/go.mod b/go.mod index 8f84161069..31e62ddc39 100644 --- a/go.mod +++ b/go.mod @@ -1,10 +1,10 @@ module github.com/ava-labs/coreth -go 1.21.9 +go 1.21.10 require ( github.com/VictoriaMetrics/fastcache v1.12.1 - github.com/ava-labs/avalanchego v1.11.6-0.20240502133155-fc1269ca4ccd + github.com/ava-labs/avalanchego v1.11.6 github.com/cespare/cp v0.1.0 github.com/crate-crypto/go-ipa v0.0.0-20231025140028-3c0104f4b233 github.com/davecgh/go-spew v1.1.1 diff --git a/go.sum b/go.sum index 2eebff80e6..ba04cf98a1 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.6-0.20240502133155-fc1269ca4ccd h1:5ET9ioh+kY4Fn5zv0Mr0d3/Rc4P2y5dm+a8xzy3r6YI= -github.com/ava-labs/avalanchego v1.11.6-0.20240502133155-fc1269ca4ccd/go.mod h1:euV1La5Eckn8jY+Hyw2J5caMC6VaXBK68DOtH+xRWPc= +github.com/ava-labs/avalanchego v1.11.6 h1:gPWNQSV+bY3XW9OhfJ4wNwxp/qidTSHA4V+VYP8kWpQ= +github.com/ava-labs/avalanchego v1.11.6/go.mod h1:s8U9tOakcU6ftSL4JcRcFrNNYI5JbekNCjTkdqZWYdE= 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/scripts/versions.sh b/scripts/versions.sh index 235e6cbdb5..147e41c6a8 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:-'fc1269ca4ccd'} +AVALANCHE_VERSION=${AVALANCHE_VERSION:-'v1.11.6'}