Skip to content

Commit

Permalink
bump version to 0.22.0-alpha.1 (risc0#1495)
Browse files Browse the repository at this point in the history
  • Loading branch information
SchmErik authored Mar 2, 2024
1 parent 9953f45 commit 1e174b4
Show file tree
Hide file tree
Showing 48 changed files with 391 additions and 397 deletions.
1 change: 1 addition & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -421,4 +421,5 @@ jobs:
- run: scripts/install_prover.sh
working-directory: compact_proof
- run: cargo test -p risc0-groth16 -F docker --release
- run: cargo test -p risc0-zkvm -F prove -F docker -- tests::stark2snark
- run: sccache --show-stats
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ permissions:

env:
RISC0_TOOLCHAIN_VERSION: v2024-01-31.1
TAG: v0.21.0-alpha.1
VERSION: "0.21.0-alpha.1"
TAG: v0.22.0-alpha.1
VERSION: "0.22.0-alpha.1"

jobs:
release:
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,4 @@ target/
tmp/
# Ignore .pb files generated by profiling
*.pb
tools/smoke-test/Cargo.lock
46 changes: 22 additions & 24 deletions Cargo.lock

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

38 changes: 19 additions & 19 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,31 +25,31 @@ members = [
exclude = ["tools/crates-validator"]

[workspace.package]
version = "0.21.0-alpha.1"
version = "0.22.0-alpha.1"
edition = "2021"
license = "Apache-2.0"
homepage = "https://risczero.com/"
repository = "https://github.com/risc0/risc0/"

[workspace.dependencies]
bonsai-ethereum-contracts = { version = "0.6.0-rc.1", path = "bonsai/ethereum" }
bonsai-ethereum-relay = { version = "0.6.0-rc.1", default-features = false, path = "bonsai/ethereum-relay" }
bonsai-rest-api-mock = { version = "0.6.0-rc.1", default-features = false, path = "bonsai/rest-api-mock" }
bonsai-sdk = { version = "0.6.0-rc.1", default-features = false, path = "bonsai/sdk" }
risc0-binfmt = { version = "0.21.0-alpha.1", default-features = false, path = "risc0/binfmt" }
risc0-build = { version = "0.21.0-alpha.1", default-features = false, path = "risc0/build" }
risc0-build-kernel = { version = "0.21.0-alpha.1", default-features = false, path = "risc0/build_kernel" }
risc0-circuit-recursion = { version = "0.21.0-alpha.1", default-features = false, path = "risc0/circuit/recursion" }
risc0-circuit-recursion-sys = { version = "0.21.0-alpha.1", default-features = false, path = "risc0/circuit/recursion-sys" }
risc0-circuit-rv32im = { version = "0.21.0-alpha.1", default-features = false, path = "risc0/circuit/rv32im" }
risc0-circuit-rv32im-sys = { version = "0.21.0-alpha.1", default-features = false, path = "risc0/circuit/rv32im-sys" }
risc0-core = { version = "0.21.0-alpha.1", default-features = false, path = "risc0/core" }
risc0-groth16 = { version = "0.21.0-alpha.1", default-features = false, path = "risc0/groth16" }
risc0-r0vm = { version = "0.21.0-alpha.1", default-features = false, path = "risc0/r0vm" }
risc0-sys = { version = "0.21.0-alpha.1", default-features = false, path = "risc0/sys" }
risc0-zkp = { version = "0.21.0-alpha.1", default-features = false, path = "risc0/zkp" }
risc0-zkvm = { version = "0.21.0-alpha.1", default-features = false, path = "risc0/zkvm" }
risc0-zkvm-platform = { version = "0.21.0-alpha.1", default-features = false, path = "risc0/zkvm/platform" }
bonsai-ethereum-contracts = { version = "0.8.0-alpha.1", path = "bonsai/ethereum" }
bonsai-ethereum-relay = { version = "0.8.0-alpha.1", default-features = false, path = "bonsai/ethereum-relay" }
bonsai-rest-api-mock = { version = "0.8.0-alpha.1", default-features = false, path = "bonsai/rest-api-mock" }
bonsai-sdk = { version = "0.8.0-alpha.1", default-features = false, path = "bonsai/sdk" }
risc0-binfmt = { version = "0.22.0-alpha.1", default-features = false, path = "risc0/binfmt" }
risc0-build = { version = "0.22.0-alpha.1", default-features = false, path = "risc0/build" }
risc0-build-kernel = { version = "0.22.0-alpha.1", default-features = false, path = "risc0/build_kernel" }
risc0-circuit-recursion = { version = "0.22.0-alpha.1", default-features = false, path = "risc0/circuit/recursion" }
risc0-circuit-recursion-sys = { version = "0.22.0-alpha.1", default-features = false, path = "risc0/circuit/recursion-sys" }
risc0-circuit-rv32im = { version = "0.22.0-alpha.1", default-features = false, path = "risc0/circuit/rv32im" }
risc0-circuit-rv32im-sys = { version = "0.22.0-alpha.1", default-features = false, path = "risc0/circuit/rv32im-sys" }
risc0-core = { version = "0.22.0-alpha.1", default-features = false, path = "risc0/core" }
risc0-groth16 = { version = "0.22.0-alpha.1", default-features = false, path = "risc0/groth16" }
risc0-r0vm = { version = "0.22.0-alpha.1", default-features = false, path = "risc0/r0vm" }
risc0-sys = { version = "0.22.0-alpha.1", default-features = false, path = "risc0/sys" }
risc0-zkp = { version = "0.22.0-alpha.1", default-features = false, path = "risc0/zkp" }
risc0-zkvm = { version = "0.22.0-alpha.1", default-features = false, path = "risc0/zkvm" }
risc0-zkvm-platform = { version = "0.22.0-alpha.1", default-features = false, path = "risc0/zkvm/platform" }

[profile.bench]
lto = true
Expand Down
Loading

0 comments on commit 1e174b4

Please sign in to comment.