Skip to content

Commit

Permalink
fix: revert release (#84)
Browse files Browse the repository at this point in the history
* fix: revert "chore: Release 1.0.0 (#83)"

This reverts commit d55f4a6.

* ci: origin/ prefix for tag branch
  • Loading branch information
tchataigner authored Jun 24, 2024

Verified

This commit was signed with the committer’s verified signature.
driesvints Dries Vints
1 parent d55f4a6 commit 463bab8
Showing 122 changed files with 809 additions and 819 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/tag-release.yml
Original file line number Diff line number Diff line change
@@ -35,8 +35,12 @@ jobs:
VERSION=$(echo "${{ github.event.pull_request.head.ref }}" | cut -d'/' -f 2)
RELEASE_BRANCH="${{ startsWith(github.event.pull_request.head.ref, 'release/') && github.event.pull_request.head.ref || github.event.pull_request.base.ref }}"
git tag -a $VERSION -m "$VERSION" $RELEASE_BRANCH
git push origin $VERSION -f
if [[ "${{ startsWith(github.event.pull_request.head.ref, 'release/') }}" == "true" ]]; then
VERSION="${VERSION}.0"
fi
git tag -a $VERSION -m "$VERSION" origin/$RELEASE_BRANCH
git push origin $VERSION --follow-tags
echo "version=$VERSION" | tee -a "$GITHUB_OUTPUT"
echo "RELEASE_BRANCH=$RELEASE_BRANCH" | tee -a "$GITHUB_ENV"
32 changes: 16 additions & 16 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sphinx-cli"
version = "1.0.0"
version = "0.1.0"
edition.workspace = true
repository.workspace = true
license.workspace = true
2 changes: 1 addition & 1 deletion core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sphinx-core"
version = "1.0.0"
version = "0.1.0"
edition.workspace = true
repository.workspace = true
license.workspace = true
2 changes: 1 addition & 1 deletion derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sphinx-derive"
version = "1.0.0"
version = "0.1.0"
edition.workspace = true
repository.workspace = true
license.workspace = true
2 changes: 1 addition & 1 deletion eval/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sphinx-eval"
version = "1.0.0"
version = "0.1.0"
edition.workspace = true
repository.workspace = true
license.workspace = true
6 changes: 3 additions & 3 deletions examples/aggregation/program/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file modified examples/aggregation/program/elf/riscv32im-succinct-zkvm-elf
Binary file not shown.
Loading

0 comments on commit 463bab8

Please sign in to comment.