diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f5673cb..379b19d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -7,6 +7,7 @@ jobs: check-version: runs-on: ubuntu-latest steps: + - uses: actions/checkout@v3 - name: Check version run: | TAG_VERSION=$(echo ${GITHUB_REF#refs/tags/v}) @@ -18,5 +19,6 @@ jobs: env: CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }} steps: + - uses: actions/checkout@v3 - name: Publish run: cargo publish diff --git a/Cargo.toml b/Cargo.toml index 12dbc17..4ba0db2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ethereum_hashing" -version = "1.0.0-beta.1" +version = "1.0.0-beta.2" edition = "2021" license = "Apache-2.0" readme = "README.md"