diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0988d9f156..6e969f5261 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -236,8 +236,8 @@ jobs: - name: Launch devnet run: | cd matic-cli/devnet - bash ../docker_devnet.sh - cd - + bash ../util-scripts/docker/devnet_setup.sh + cd - timeout 2m bash bor/integration-tests/bor_health.sh - name: Run smoke tests diff --git a/params/version.go b/params/version.go index c139179f0f..43c57b5365 100644 --- a/params/version.go +++ b/params/version.go @@ -21,9 +21,9 @@ import ( ) const ( - VersionMajor = 1 // Major version component of the current release - VersionMinor = 5 // Minor version component of the current release - VersionPatch = 5 // Patch version component of the current release + VersionMajor = 2 // Major version component of the current release + VersionMinor = 0 // Minor version component of the current release + VersionPatch = 0 // Patch version component of the current release VersionMeta = "" // Version metadata to append to the version string )