diff --git a/.github/workflows/build-test-release.yml b/.github/workflows/build-test-release.yml index 382657e1..78575744 100644 --- a/.github/workflows/build-test-release.yml +++ b/.github/workflows/build-test-release.yml @@ -56,7 +56,7 @@ jobs: go-version: 1.18 - name: Run e2e tests shell: bash - run: scripts/tests.e2e.sh 1.9.2 1.9.2 0.4.3 + run: scripts/tests.e2e.sh 1.9.4 1.9.4 0.4.5 release: needs: [lint_test, unit_test, e2e_test] runs-on: ubuntu-20.04 diff --git a/VERSION b/VERSION index 3a3cd8cc..31e5c843 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.3.1 +1.3.3 diff --git a/scripts/tests.e2e.sh b/scripts/tests.e2e.sh index f3d92aca..108d773d 100755 --- a/scripts/tests.e2e.sh +++ b/scripts/tests.e2e.sh @@ -3,15 +3,15 @@ set -e export RUN_E2E="true" # e.g., -# ./scripts/tests.e2e.sh 1.7.12 1.7.13 +# ./scripts/tests.e2e.sh 1.9.4 1.9.4 0.4.5 if ! [[ "$0" =~ scripts/tests.e2e.sh ]]; then echo "must be run from repository root" exit 255 fi -DEFAULT_VERSION_1=1.9.2 -DEFAULT_VERSION_2=1.9.2 -DEFAULT_SUBNET_EVM_VERSION=0.4.3 +DEFAULT_VERSION_1=1.9.4 +DEFAULT_VERSION_2=1.9.4 +DEFAULT_SUBNET_EVM_VERSION=0.4.5 if [ $# == 0 ]; then VERSION_1=$DEFAULT_VERSION_1