diff --git a/compatibility.json b/compatibility.json index 8356d50b59..456fbede01 100644 --- a/compatibility.json +++ b/compatibility.json @@ -1,5 +1,6 @@ { "rpcChainVMProtocolVersion": { + "v0.4.10": 23, "v0.4.9": 23, "v0.4.8": 22, "v0.4.7": 21, diff --git a/plugin/evm/version.go b/plugin/evm/version.go index d889ba117f..84c649ba2e 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 Subnet EVM - Version string = "v0.4.9" + Version string = "v0.4.10" ) func init() { diff --git a/scripts/versions.sh b/scripts/versions.sh index 32b7d83c31..a95c7f3c78 100644 --- a/scripts/versions.sh +++ b/scripts/versions.sh @@ -1,7 +1,7 @@ #!/usr/bin/env bash # Set up the versions to be used - populate ENV variables only if they are not already populated -SUBNET_EVM_VERSION=${SUBNET_EVM_VERSION:-'v0.4.9'} +SUBNET_EVM_VERSION=${SUBNET_EVM_VERSION:-'v0.4.10'} # Don't export them as they're used in the context of other calls AVALANCHEGO_VERSION=${AVALANCHE_VERSION:-'v1.9.9'} GINKGO_VERSION=${GINKGO_VERSION:-'v2.2.0'}