Skip to content

Commit a3cfe77

Browse files
authored
Bump to rc.2 (#489)
1 parent 37f4b83 commit a3cfe77

File tree

39 files changed

+1025
-444
lines changed

39 files changed

+1025
-444
lines changed

.github/workflows/e2e.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ permissions:
1818
env:
1919
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2020
RISC0_TOOLCHAIN_VERSION: 1.81.0
21-
RISC0_CRATE_VERSION: "2.0.0-rc.1"
21+
RISC0_CRATE_VERSION: "2.0.0-rc.2"
2222

2323
jobs:
2424
e2e-tests:

.github/workflows/main.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ permissions:
1717
env:
1818
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
1919
RISC0_TOOLCHAIN_VERSION: 1.81.0
20-
RISC0_CRATE_VERSION: "2.0.0-rc.1"
20+
RISC0_CRATE_VERSION: "2.0.0-rc.2"
2121
# CARGO_LOCKED is defined as the string '--locked' in PRs targeting release branches and '' elsewhere.
2222
CARGO_LOCKED: ${{ (startsWith(github.base_ref, 'release-') || startsWith(github.base_ref, 'refs/heads/release-')) && '--locked' || '' }}
2323

.github/workflows/steel-documentation.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ concurrency:
1818

1919
env:
2020
RISC0_TOOLCHAIN_VERSION: r0.1.81.0
21-
RISC0_CRATE_VERSION: "2.0.0-rc.1"
21+
RISC0_CRATE_VERSION: "2.0.0-rc.2"
2222

2323
jobs:
2424
build:

Cargo.lock

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

Cargo.toml

+9-9
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ resolver = "2"
33
members = ["crates/*", "crates/aggregation/guest", "crates/ffi/guests"]
44

55
[workspace.package]
6-
version = "2.0.0-rc.1"
6+
version = "2.0.0-rc.2"
77
edition = "2021"
88
license = "Apache-2.0"
99
homepage = "https://risczero.com/"
@@ -12,17 +12,17 @@ repository = "https://github.com/risc0/risc0-ethereum/"
1212
[workspace.dependencies]
1313
# Intra-workspace dependencies
1414
risc0-aggregation = { version = "0.4.0-rc.1", default-features = false, path = "crates/aggregation" }
15-
risc0-build-ethereum = { version = "2.0.0-rc.1", default-features = false, path = "build" }
16-
risc0-ethereum-contracts = { version = "2.0.0-rc.1", default-features = false, path = "contracts" }
17-
risc0-forge-ffi = { version = "2.0.0-rc.1", default-features = false, path = "crates/ffi" }
15+
risc0-build-ethereum = { version = "2.0.0-rc.2", default-features = false, path = "build" }
16+
risc0-ethereum-contracts = { version = "2.0.0-rc.2", default-features = false, path = "contracts" }
17+
risc0-forge-ffi = { version = "2.0.0-rc.2", default-features = false, path = "crates/ffi" }
1818
risc0-op-steel = { version = "0.3.0-rc.1", default-features = false, path = "crates/op-steel" }
19-
risc0-steel = { version = "2.0.0-rc.3", default-features = false, path = "crates/steel" }
19+
risc0-steel = { version = "2.0.0-rc.4", default-features = false, path = "crates/steel" }
2020

2121
# risc0 monorepo dependencies.
22-
risc0-binfmt = { version = "2.0.0-rc.1", default-features = false }
23-
risc0-build = { version = "3.0.0-rc.1", default-features = false }
24-
risc0-zkp = { version = "2.0.0-rc.1", default-features = false }
25-
risc0-zkvm = { version = "2.0.0-rc.1", default-features = false }
22+
risc0-binfmt = { version = "2.0.0-rc.2", default-features = false }
23+
risc0-build = { version = "2.0.1-rc.2", default-features = false }
24+
risc0-zkp = { version = "2.0.0-rc.2", default-features = false }
25+
risc0-zkvm = { version = "2.0.0-rc.2", default-features = false }
2626

2727
# Alloy guest dependencies
2828
alloy-consensus = { version = "0.11" }

0 commit comments

Comments
 (0)