From 0d8bfd604cdc523666f0758920ccb0576bd752ca Mon Sep 17 00:00:00 2001 From: Samuel Burnham <45365069+samuelburnham@users.noreply.github.com> Date: Thu, 26 Sep 2024 10:15:06 -0400 Subject: [PATCH] chore: Release `sphinx-v4.6.0` (#41) * chore: Release `sphinx-v4.6.0` * Fix CI --- .github/workflows/tag-release.yml | 6 +++--- cli/Cargo.toml | 2 +- core/Cargo.toml | 2 +- derive/Cargo.toml | 2 +- eval/Cargo.toml | 2 +- helper/Cargo.toml | 2 +- primitives/Cargo.toml | 2 +- prover/Cargo.toml | 2 +- recursion/circuit/Cargo.toml | 2 +- recursion/compiler/Cargo.toml | 2 +- recursion/core/Cargo.toml | 2 +- recursion/gnark-ffi/Cargo.toml | 2 +- recursion/program/Cargo.toml | 2 +- sdk/Cargo.toml | 2 +- tutorials/Cargo.toml | 2 +- zkvm/entrypoint/Cargo.toml | 2 +- zkvm/precompiles/Cargo.toml | 2 +- 17 files changed, 19 insertions(+), 19 deletions(-) diff --git a/.github/workflows/tag-release.yml b/.github/workflows/tag-release.yml index 23d748f08..0aad66953 100644 --- a/.github/workflows/tag-release.yml +++ b/.github/workflows/tag-release.yml @@ -70,8 +70,8 @@ jobs: if [[ "${{ github.event_name }}" == "pull_request" ]]; then RELEASE_BRANCH=${{ github.event.pull_request.base.ref }} # Get tag and version from PR title - TAG=$(echo "${{ github.event.pull_request.title }}" | awk '/Release/ {print $NF}' | tr -d '`') - VERSION="${TAG#*-}" + TAG=$(echo '${{ github.event.pull_request.title }}' | awk '/Release/ {print $NF}' | tr -d '`') + VERSION="${TAG#*-v}" else RELEASE_BRANCH=${{ inputs.release-branch }} VERSION=${{ inputs.version }} @@ -87,7 +87,7 @@ jobs: - name: Publish release uses: ./ci-workflows/.github/actions/tag-release with: - release_branch: ${{ env.RELEASE_BRANCH }} + release-branch: ${{ env.RELEASE_BRANCH }} version: ${{ env.VERSION }} tag-prefix: sphinx changelog-config-file: ./config.json diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 454aa962b..45c012a6b 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sphinx-cli" -version = "4.5.0" +version = "4.6.0" edition.workspace = true repository.workspace = true license.workspace = true diff --git a/core/Cargo.toml b/core/Cargo.toml index b577656d5..5ed3b9460 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sphinx-core" -version = "4.5.0" +version = "4.6.0" edition.workspace = true repository.workspace = true license.workspace = true diff --git a/derive/Cargo.toml b/derive/Cargo.toml index 1c75bad10..f5e4cc00a 100644 --- a/derive/Cargo.toml +++ b/derive/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sphinx-derive" -version = "4.5.0" +version = "4.6.0" edition.workspace = true repository.workspace = true license.workspace = true diff --git a/eval/Cargo.toml b/eval/Cargo.toml index e892b12ff..b897acc14 100644 --- a/eval/Cargo.toml +++ b/eval/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sphinx-eval" -version = "4.5.0" +version = "4.6.0" edition.workspace = true repository.workspace = true license.workspace = true diff --git a/helper/Cargo.toml b/helper/Cargo.toml index 3a3fd445b..f058807ba 100644 --- a/helper/Cargo.toml +++ b/helper/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sphinx-helper" -version = "4.5.0" +version = "4.6.0" edition.workspace = true repository.workspace = true license.workspace = true diff --git a/primitives/Cargo.toml b/primitives/Cargo.toml index d2526f25d..7290a330e 100644 --- a/primitives/Cargo.toml +++ b/primitives/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sphinx-primitives" -version = "4.5.0" +version = "4.6.0" edition.workspace = true repository.workspace = true license.workspace = true diff --git a/prover/Cargo.toml b/prover/Cargo.toml index 292e185d5..2ae7f4fb1 100644 --- a/prover/Cargo.toml +++ b/prover/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sphinx-prover" -version = "4.5.0" +version = "4.6.0" edition.workspace = true repository.workspace = true license.workspace = true diff --git a/recursion/circuit/Cargo.toml b/recursion/circuit/Cargo.toml index 3c7ae9025..5ad1737cb 100644 --- a/recursion/circuit/Cargo.toml +++ b/recursion/circuit/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sphinx-recursion-circuit" -version = "4.5.0" +version = "4.6.0" edition.workspace = true repository.workspace = true license.workspace = true diff --git a/recursion/compiler/Cargo.toml b/recursion/compiler/Cargo.toml index 891a3651a..7db619117 100644 --- a/recursion/compiler/Cargo.toml +++ b/recursion/compiler/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sphinx-recursion-compiler" -version = "4.5.0" +version = "4.6.0" edition.workspace = true repository.workspace = true license.workspace = true diff --git a/recursion/core/Cargo.toml b/recursion/core/Cargo.toml index ee8eb47f5..f2b23ffc5 100644 --- a/recursion/core/Cargo.toml +++ b/recursion/core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sphinx-recursion-core" -version = "4.5.0" +version = "4.6.0" edition.workspace = true repository.workspace = true license.workspace = true diff --git a/recursion/gnark-ffi/Cargo.toml b/recursion/gnark-ffi/Cargo.toml index 1f731af17..22658eac7 100644 --- a/recursion/gnark-ffi/Cargo.toml +++ b/recursion/gnark-ffi/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sphinx-recursion-gnark-ffi" -version = "4.5.0" +version = "4.6.0" edition.workspace = true repository.workspace = true license.workspace = true diff --git a/recursion/program/Cargo.toml b/recursion/program/Cargo.toml index 577bab8aa..4032ec8d6 100644 --- a/recursion/program/Cargo.toml +++ b/recursion/program/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sphinx-recursion-program" -version = "4.5.0" +version = "4.6.0" edition.workspace = true repository.workspace = true license.workspace = true diff --git a/sdk/Cargo.toml b/sdk/Cargo.toml index af888cc1c..558595a7c 100644 --- a/sdk/Cargo.toml +++ b/sdk/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sphinx-sdk" -version = "4.5.0" +version = "4.6.0" edition.workspace = true repository.workspace = true license.workspace = true diff --git a/tutorials/Cargo.toml b/tutorials/Cargo.toml index 7af102dd7..9d0962091 100644 --- a/tutorials/Cargo.toml +++ b/tutorials/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tutorials" -version = "4.5.0" +version = "4.6.0" edition.workspace = true repository.workspace = true license.workspace = true diff --git a/zkvm/entrypoint/Cargo.toml b/zkvm/entrypoint/Cargo.toml index 23f007931..13285e66b 100644 --- a/zkvm/entrypoint/Cargo.toml +++ b/zkvm/entrypoint/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sphinx-zkvm" -version = "4.5.0" +version = "4.6.0" edition.workspace = true repository.workspace = true license.workspace = true diff --git a/zkvm/precompiles/Cargo.toml b/zkvm/precompiles/Cargo.toml index ed4c94565..874068601 100644 --- a/zkvm/precompiles/Cargo.toml +++ b/zkvm/precompiles/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "sphinx-precompiles" -version = "4.5.0" +version = "4.6.0" edition.workspace = true repository.workspace = true license.workspace = true