Skip to content

Commit 1e174b4

Browse files
authored
bump version to 0.22.0-alpha.1 (risc0#1495)
1 parent 9953f45 commit 1e174b4

File tree

48 files changed

+391
-397
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

48 files changed

+391
-397
lines changed

.github/workflows/main.yml

+1
Original file line numberDiff line numberDiff line change
@@ -421,4 +421,5 @@ jobs:
421421
- run: scripts/install_prover.sh
422422
working-directory: compact_proof
423423
- run: cargo test -p risc0-groth16 -F docker --release
424+
- run: cargo test -p risc0-zkvm -F prove -F docker -- tests::stark2snark
424425
- run: sccache --show-stats

.github/workflows/release.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ permissions:
1515

1616
env:
1717
RISC0_TOOLCHAIN_VERSION: v2024-01-31.1
18-
TAG: v0.21.0-alpha.1
19-
VERSION: "0.21.0-alpha.1"
18+
TAG: v0.22.0-alpha.1
19+
VERSION: "0.22.0-alpha.1"
2020

2121
jobs:
2222
release:

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -15,3 +15,4 @@ target/
1515
tmp/
1616
# Ignore .pb files generated by profiling
1717
*.pb
18+
tools/smoke-test/Cargo.lock

Cargo.lock

+22-24
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+19-19
Original file line numberDiff line numberDiff line change
@@ -25,31 +25,31 @@ members = [
2525
exclude = ["tools/crates-validator"]
2626

2727
[workspace.package]
28-
version = "0.21.0-alpha.1"
28+
version = "0.22.0-alpha.1"
2929
edition = "2021"
3030
license = "Apache-2.0"
3131
homepage = "https://risczero.com/"
3232
repository = "https://github.com/risc0/risc0/"
3333

3434
[workspace.dependencies]
35-
bonsai-ethereum-contracts = { version = "0.6.0-rc.1", path = "bonsai/ethereum" }
36-
bonsai-ethereum-relay = { version = "0.6.0-rc.1", default-features = false, path = "bonsai/ethereum-relay" }
37-
bonsai-rest-api-mock = { version = "0.6.0-rc.1", default-features = false, path = "bonsai/rest-api-mock" }
38-
bonsai-sdk = { version = "0.6.0-rc.1", default-features = false, path = "bonsai/sdk" }
39-
risc0-binfmt = { version = "0.21.0-alpha.1", default-features = false, path = "risc0/binfmt" }
40-
risc0-build = { version = "0.21.0-alpha.1", default-features = false, path = "risc0/build" }
41-
risc0-build-kernel = { version = "0.21.0-alpha.1", default-features = false, path = "risc0/build_kernel" }
42-
risc0-circuit-recursion = { version = "0.21.0-alpha.1", default-features = false, path = "risc0/circuit/recursion" }
43-
risc0-circuit-recursion-sys = { version = "0.21.0-alpha.1", default-features = false, path = "risc0/circuit/recursion-sys" }
44-
risc0-circuit-rv32im = { version = "0.21.0-alpha.1", default-features = false, path = "risc0/circuit/rv32im" }
45-
risc0-circuit-rv32im-sys = { version = "0.21.0-alpha.1", default-features = false, path = "risc0/circuit/rv32im-sys" }
46-
risc0-core = { version = "0.21.0-alpha.1", default-features = false, path = "risc0/core" }
47-
risc0-groth16 = { version = "0.21.0-alpha.1", default-features = false, path = "risc0/groth16" }
48-
risc0-r0vm = { version = "0.21.0-alpha.1", default-features = false, path = "risc0/r0vm" }
49-
risc0-sys = { version = "0.21.0-alpha.1", default-features = false, path = "risc0/sys" }
50-
risc0-zkp = { version = "0.21.0-alpha.1", default-features = false, path = "risc0/zkp" }
51-
risc0-zkvm = { version = "0.21.0-alpha.1", default-features = false, path = "risc0/zkvm" }
52-
risc0-zkvm-platform = { version = "0.21.0-alpha.1", default-features = false, path = "risc0/zkvm/platform" }
35+
bonsai-ethereum-contracts = { version = "0.8.0-alpha.1", path = "bonsai/ethereum" }
36+
bonsai-ethereum-relay = { version = "0.8.0-alpha.1", default-features = false, path = "bonsai/ethereum-relay" }
37+
bonsai-rest-api-mock = { version = "0.8.0-alpha.1", default-features = false, path = "bonsai/rest-api-mock" }
38+
bonsai-sdk = { version = "0.8.0-alpha.1", default-features = false, path = "bonsai/sdk" }
39+
risc0-binfmt = { version = "0.22.0-alpha.1", default-features = false, path = "risc0/binfmt" }
40+
risc0-build = { version = "0.22.0-alpha.1", default-features = false, path = "risc0/build" }
41+
risc0-build-kernel = { version = "0.22.0-alpha.1", default-features = false, path = "risc0/build_kernel" }
42+
risc0-circuit-recursion = { version = "0.22.0-alpha.1", default-features = false, path = "risc0/circuit/recursion" }
43+
risc0-circuit-recursion-sys = { version = "0.22.0-alpha.1", default-features = false, path = "risc0/circuit/recursion-sys" }
44+
risc0-circuit-rv32im = { version = "0.22.0-alpha.1", default-features = false, path = "risc0/circuit/rv32im" }
45+
risc0-circuit-rv32im-sys = { version = "0.22.0-alpha.1", default-features = false, path = "risc0/circuit/rv32im-sys" }
46+
risc0-core = { version = "0.22.0-alpha.1", default-features = false, path = "risc0/core" }
47+
risc0-groth16 = { version = "0.22.0-alpha.1", default-features = false, path = "risc0/groth16" }
48+
risc0-r0vm = { version = "0.22.0-alpha.1", default-features = false, path = "risc0/r0vm" }
49+
risc0-sys = { version = "0.22.0-alpha.1", default-features = false, path = "risc0/sys" }
50+
risc0-zkp = { version = "0.22.0-alpha.1", default-features = false, path = "risc0/zkp" }
51+
risc0-zkvm = { version = "0.22.0-alpha.1", default-features = false, path = "risc0/zkvm" }
52+
risc0-zkvm-platform = { version = "0.22.0-alpha.1", default-features = false, path = "risc0/zkvm/platform" }
5353

5454
[profile.bench]
5555
lto = true

0 commit comments

Comments
 (0)