Skip to content

Commit

Permalink
Update dependencies and bump risc0 to 1.1.2 (#274)
Browse files Browse the repository at this point in the history
This PR bumps the `risc0` dependencies to use the new 1.1.2 release, and
accordingly bumps the version number to 1.1.2 for the workspace, and
0.13.2 for Steel.
  • Loading branch information
Wollac authored Oct 3, 2024
1 parent 7a47ea3 commit 8c941e6
Show file tree
Hide file tree
Showing 19 changed files with 1,330 additions and 1,300 deletions.
344 changes: 175 additions & 169 deletions Cargo.lock

Large diffs are not rendered by default.

22 changes: 11 additions & 11 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,30 +3,30 @@ resolver = "2"
members = ["build", "contracts", "ffi", "steel"]

[workspace.package]
version = "1.1.1"
version = "1.1.2"
edition = "2021"
license = "Apache-2.0"
homepage = "https://risczero.com/"
repository = "https://github.com/risc0/risc0-ethereum/"

[workspace.dependencies]
# Intra-workspace dependencies
risc0-build-ethereum = { version = "1.1.1", default-features = false, path = "build" }
risc0-ethereum-contracts = { version = "1.1.1", default-features = false, path = "contracts" }
risc0-steel = { version = "0.13.1", default-features = false, path = "steel" }
risc0-forge-ffi = { version = "1.1.1", default-features = false, path = "ffi" }
risc0-build-ethereum = { version = "1.1.2", default-features = false, path = "build" }
risc0-ethereum-contracts = { version = "1.1.2", default-features = false, path = "contracts" }
risc0-steel = { version = "0.13.2", default-features = false, path = "steel" }
risc0-forge-ffi = { version = "1.1.2", default-features = false, path = "ffi" }

# risc0 monorepo dependencies.
risc0-build = { version = "1.1.1", default-features = false }
risc0-zkp = { version = "1.1.1", default-features = false }
risc0-zkvm = { version = "1.1.1", default-features = false }
risc0-build = { version = "1.1.2", default-features = false }
risc0-zkp = { version = "1.1.2", default-features = false }
risc0-zkvm = { version = "1.1.2", default-features = false }

# Alloy guest dependencies
alloy-consensus = { version = "0.3" }
alloy-primitives = { version = "0.8" }
alloy-primitives = { version = "=0.8.3" }
alloy-rlp = { version = "0.3.8" }
alloy-rlp-derive = { version = "0.3.8" }
alloy-sol-types = { version = "0.8" }
alloy-sol-types = { version = "=0.8.3" }

# Alloy host dependencies
alloy = { version = "=0.3.3" }
Expand All @@ -48,7 +48,7 @@ clap = { version = "4.5", features = ["derive", "env"] }
log = "0.4"
nybbles = { version = "0.2.1" }
once_cell = "1.19"
revm = { version = "14.0", default-features = false, features = ["std"] }
revm = { version = "=14.0.2", default-features = false, features = ["std"] }
serde = "1.0"
serde_json = "1.0"
sha2 = { version = "0.10" }
Expand Down
2 changes: 1 addition & 1 deletion contracts/src/groth16/RiscZeroGroth16Verifier.sol
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ contract RiscZeroGroth16Verifier is IRiscZeroVerifier, Groth16Verifier {
using SafeCast for uint256;

/// Semantic version of the the RISC Zero system of which this contract is part.
string public constant VERSION = "1.1.1";
string public constant VERSION = "1.1.2";

/// @notice Control root hash binding the set of circuits in the RISC Zero system.
/// @dev This value controls what set of recursion programs (e.g. lift, join, resolve), and
Expand Down
Loading

0 comments on commit 8c941e6

Please sign in to comment.