Skip to content

Commit 0c3802c

Browse files
authored
bump versions (#1102)
1 parent 814d0de commit 0c3802c

File tree

6 files changed

+8
-6
lines changed

6 files changed

+8
-6
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,8 @@ The Subnet EVM runs in a separate process from the main AvalancheGo process and
5656
[v0.5.9] AvalancheGo@v1.10.15-v1.10.17 (Protocol Version: 30)
5757
[v0.5.10] AvalancheGo@v1.10.15-v1.10.17 (Protocol Version: 30)
5858
[v0.5.11] AvalancheGo@v1.10.18-v1.10.19 (Protocol Version: 31)
59-
[v0.6.0] AvalancheGo@v1.11.0 (Protocol Version: 33)
59+
[v0.6.0] AvalancheGo@v1.11.0-v1.11.1 (Protocol Version: 33)
60+
[v0.6.1] AvalancheGo@v1.11.0-v1.11.1 (Protocol Version: 33)
6061
```
6162

6263
## API

compatibility.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{
22
"rpcChainVMProtocolVersion": {
3+
"v0.6.1": 33,
34
"v0.6.0": 33,
45
"v0.5.11": 31,
56
"v0.5.10": 30,

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ go 1.21
55
require (
66
github.com/VictoriaMetrics/fastcache v1.10.0
77
github.com/ava-labs/avalanche-network-runner v1.7.6
8-
github.com/ava-labs/avalanchego v1.11.0
8+
github.com/ava-labs/avalanchego v1.11.1
99
github.com/cespare/cp v0.1.0
1010
github.com/davecgh/go-spew v1.1.1
1111
github.com/deckarep/golang-set/v2 v2.1.0

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,8 @@ github.com/antihax/optional v1.0.0/go.mod h1:uupD/76wgC+ih3iEmQUL+0Ugr19nfwCT1kd
6262
github.com/armon/consul-api v0.0.0-20180202201655-eb2c6b5be1b6/go.mod h1:grANhF5doyWs3UAsr3K4I6qtAmlQcZDesFNEHPZAzj8=
6363
github.com/ava-labs/avalanche-network-runner v1.7.6 h1:2yXa2Zq099t900ffpn0RG9D5dca98fs3l+/hF7AumIY=
6464
github.com/ava-labs/avalanche-network-runner v1.7.6/go.mod h1:+Br4mCjreTMtnDiUDNXJba500fnchMk0Ygu5qWVj6A4=
65-
github.com/ava-labs/avalanchego v1.11.0 h1:rXo27MRy7uFaY8Eo16N0wHYeEJ2TlsOXuMzbXVfSg9Y=
66-
github.com/ava-labs/avalanchego v1.11.0/go.mod h1:+UpgT8X2fNN93+iE100efkZL7ePfBRfRdmpJ/i3YnyY=
65+
github.com/ava-labs/avalanchego v1.11.1 h1:NSelfZ/Di8uGCsRoFK32HOR262eHlpUFmAu8pbfg0Jo=
66+
github.com/ava-labs/avalanchego v1.11.1/go.mod h1:+UpgT8X2fNN93+iE100efkZL7ePfBRfRdmpJ/i3YnyY=
6767
github.com/ava-labs/coreth v0.13.0-rc.0 h1:V2l3qj2ek3geKDJAnF2M94mYJK8kg2kePixujfJ0bmk=
6868
github.com/ava-labs/coreth v0.13.0-rc.0/go.mod h1:eUMbBLDhlZASJjcbf0gIcD2GMn2rRRCUxC8MXLt5QQk=
6969
github.com/aymerick/raymond v2.0.3-0.20180322193309-b565731e1464+incompatible/go.mod h1:osfaiScAUVup+UC9Nfq76eWqDhXlp+4UYaA8uhTBO6g=

plugin/evm/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ var (
1111
// GitCommit is set by the build script
1212
GitCommit string
1313
// Version is the version of Subnet EVM
14-
Version string = "v0.6.0"
14+
Version string = "v0.6.1"
1515
)
1616

1717
func init() {

scripts/versions.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# shellcheck disable=SC2034
55

66
# Don't export them as they're used in the context of other calls
7-
AVALANCHE_VERSION=${AVALANCHE_VERSION:-'v1.11.0'}
7+
AVALANCHE_VERSION=${AVALANCHE_VERSION:-'v1.11.1'}
88
GINKGO_VERSION=${GINKGO_VERSION:-'v2.2.0'}
99

1010
# This won't be used, but it's here to make code syncs easier

0 commit comments

Comments
 (0)