From 9dae07f7671ffbe43d06a9dfafb313aaeab30416 Mon Sep 17 00:00:00 2001 From: aaronbuchwald Date: Thu, 8 Sep 2022 11:58:53 -0400 Subject: [PATCH] Update versions for v1.8.5 (#1958) Co-authored-by: Stephen --- go.mod | 2 +- go.sum | 4 ++-- scripts/versions.sh | 2 +- version/constants.go | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/go.mod b/go.mod index b0b955e349b8..17ceccadb62c 100644 --- a/go.mod +++ b/go.mod @@ -12,7 +12,7 @@ require ( github.com/Microsoft/go-winio v0.5.2 github.com/NYTimes/gziphandler v1.1.1 github.com/ava-labs/avalanche-network-runner-sdk v0.2.0 - github.com/ava-labs/coreth v0.9.0-rc.12 + github.com/ava-labs/coreth v0.9.0-rc.13 github.com/btcsuite/btcd v0.23.1 github.com/btcsuite/btcd/btcutil v1.1.1 github.com/decred/dcrd/dcrec/secp256k1/v3 v3.0.0-20200627015759-01fd2de07837 diff --git a/go.sum b/go.sum index fbae3fceb1b5..fefa9e665861 100644 --- a/go.sum +++ b/go.sum @@ -58,8 +58,8 @@ github.com/allegro/bigcache v1.2.1-0.20190218064605-e24eb225f156/go.mod h1:Cb/ax github.com/antihax/optional v1.0.0/go.mod h1:uupD/76wgC+ih3iEmQUL+0Ugr19nfwCT1kdvxnR2qWY= github.com/ava-labs/avalanche-network-runner-sdk v0.2.0 h1:YNvM0oFlb7A825kGe0XwwZuvIXTKF1BsuvxJdRLhIaI= github.com/ava-labs/avalanche-network-runner-sdk v0.2.0/go.mod h1:bEBRVZnGeRiNdDJAFUj+gA/TPzNDbpY/WzgDAHHwJb8= -github.com/ava-labs/coreth v0.9.0-rc.12 h1:haST2EdwTEXuJs73kjTvRMw81j9cOShflv9oyc89AI0= -github.com/ava-labs/coreth v0.9.0-rc.12/go.mod h1:TCUPN8PjyzwOTtH9VsxAVcd8eMh8jcbFgz4a5DOx1Ug= +github.com/ava-labs/coreth v0.9.0-rc.13 h1:ccbNzZGV767q8hp97qKtEE/4HTD+fbEHYdAQgEXuR/U= +github.com/ava-labs/coreth v0.9.0-rc.13/go.mod h1:TCUPN8PjyzwOTtH9VsxAVcd8eMh8jcbFgz4a5DOx1Ug= github.com/benbjohnson/clock v1.1.0 h1:Q92kusRqC1XV2MjkWETPvjJVqKetz1OzxZB7mHJLju8= github.com/benbjohnson/clock v1.1.0/go.mod h1:J11/hYXuz8f4ySSvYwY0FKfm+ezbsZBKZxNJlLklBHA= github.com/beorn7/perks v0.0.0-20180321164747-3a771d992973/go.mod h1:Dwedo/Wpr24TaqPxmxbtue+5NUziq4I4S80YR8gNf3Q= diff --git a/scripts/versions.sh b/scripts/versions.sh index b0e9e7ef25ae..b126c4cdb998 100644 --- a/scripts/versions.sh +++ b/scripts/versions.sh @@ -7,4 +7,4 @@ # Set up the versions to be used # Don't export them as their used in the context of other calls -coreth_version=${CORETH_VERSION:-'v0.9.0-rc.12'} +coreth_version=${CORETH_VERSION:-'v0.9.0-rc.13'} diff --git a/version/constants.go b/version/constants.go index f88c804d3069..71c7bc5062e0 100644 --- a/version/constants.go +++ b/version/constants.go @@ -14,7 +14,7 @@ var ( Current = &Semantic{ Major: 1, Minor: 8, - Patch: 4, + Patch: 5, } CurrentApp = &Application{ Major: Current.Major,