Skip to content

Commit

Permalink
bump to rc.3
Browse files Browse the repository at this point in the history
  • Loading branch information
nategraf committed Aug 29, 2024
1 parent 603b7f2 commit 0dbffa1
Show file tree
Hide file tree
Showing 8 changed files with 22 additions and 19 deletions.
14 changes: 7 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,23 +3,23 @@ resolver = "2"
members = ["build", "contracts", "ffi", "steel"]

[workspace.package]
version = "1.1.0-rc.2"
version = "1.1.0-rc.3"
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.0-rc.2", default-features = false, path = "build" }
risc0-ethereum-contracts = { version = "1.1.0-rc.2", default-features = false, path = "contracts" }
risc0-build-ethereum = { version = "1.1.0-rc.3", default-features = false, path = "build" }
risc0-ethereum-contracts = { version = "1.1.0-rc.3", default-features = false, path = "contracts" }
risc0-steel = { version = "0.12.0", default-features = false, path = "steel" }
risc0-forge-ffi = { version = "1.1.0-rc.2", default-features = false, path = "ffi" }
risc0-forge-ffi = { version = "1.1.0-rc.3", default-features = false, path = "ffi" }

# risc0 monorepo dependencies.
risc0-build = { version = "1.1.0-rc.2", default-features = false }
risc0-zkp = { version = "1.1.0-rc.2", default-features = false }
risc0-zkvm = { version = "1.1.0-rc.2", default-features = false }
risc0-build = { version = "1.1.0-rc.3", default-features = false }
risc0-zkp = { version = "1.1.0-rc.3", default-features = false }
risc0-zkvm = { version = "1.1.0-rc.3", default-features = false }

# Alloy guest dependencies
alloy-consensus = { version = "0.2.1" }
Expand Down
3 changes: 3 additions & 0 deletions RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,9 @@

5. When changes have been made to the verifier contract, deploy a new verifier contract.

> [!WARNING]
> This section of the release process is out of date. It does not include the steps for the router or estop.
<!-- TODO: Include instructions for the process including the emergency stop and index contracts, once those are ready -->

* Deploy the contract to Sepolia, and verify the source code.
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 constant VERSION = "1.1.0-rc.2";
string constant VERSION = "1.1.0-rc.3";

/// @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
6 changes: 3 additions & 3 deletions examples/erc20-counter/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ risc0-ethereum-contracts = { path = "../../contracts" }
risc0-steel = { path = "../../steel" }

# risc0 monorepo dependencies.
risc0-build = { version = "1.1.0-rc.2", features = ["docker"] }
risc0-zkvm = { version = "1.1.0-rc.2", default-features = false }
risc0-zkp = { version = "1.1.0-rc.2", default-features = false }
risc0-build = { version = "1.1.0-rc.3", features = ["docker"] }
risc0-zkvm = { version = "1.1.0-rc.3", default-features = false }
risc0-zkp = { version = "1.1.0-rc.3", default-features = false }

alloy = { version = "0.2.1", features = ["full"] }
alloy-primitives = { version = "0.7", features = ["rlp", "serde", "std"] }
Expand Down
6 changes: 3 additions & 3 deletions examples/erc20/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ members = ["host", "methods"]
risc0-steel = { path = "../../steel" }

# risc0 monorepo dependencies.
risc0-build = { version = "1.1.0-rc.2" }
risc0-zkvm = { version = "1.1.0-rc.2", default-features = false }
risc0-zkp = { version = "1.1.0-rc.2", default-features = false }
risc0-build = { version = "1.1.0-rc.3" }
risc0-zkvm = { version = "1.1.0-rc.3", default-features = false }
risc0-zkp = { version = "1.1.0-rc.3", default-features = false }

alloy-primitives = { version = "0.7" }
alloy-sol-types = { version = "0.7" }
Expand Down
2 changes: 1 addition & 1 deletion examples/erc20/methods/guest/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ ahash = { version = "0.8", default-features = false, features = ["compile-time-r
alloy-primitives = { version = "0.7" }
alloy-sol-types = { version = "0.7" }
risc0-steel = { path = "../../../../steel" }
risc0-zkvm = { version = "1.1.0-rc.2", default-features = false, features = ["std"] }
risc0-zkvm = { version = "1.1.0-rc.3", default-features = false, features = ["std"] }

[patch.crates-io]
# use optimized risc0 circuit
Expand Down
6 changes: 3 additions & 3 deletions examples/token-stats/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ members = ["core", "host", "methods"]
risc0-steel = { path = "../../steel" }

# risc0 monorepo dependencies.
risc0-build = { version = "1.1.0-rc.2" }
risc0-zkvm = { version = "1.1.0-rc.2", default-features = false }
risc0-zkp = { version = "1.1.0-rc.2", default-features = false }
risc0-build = { version = "1.1.0-rc.3" }
risc0-zkvm = { version = "1.1.0-rc.3", default-features = false }
risc0-zkp = { version = "1.1.0-rc.3", default-features = false }

alloy-primitives = { version = "0.7", features = ["serde", "rlp", "std"] }
alloy-rlp = { version = "0.3", default-features = false }
Expand Down
2 changes: 1 addition & 1 deletion examples/token-stats/methods/guest/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ edition = "2021"
alloy-sol-types = { version = "0.7" }
core = { path = "../../core" }
risc0-steel = { path = "../../../../steel" }
risc0-zkvm = { version = "1.1.0-rc.2", default-features = false, features = ["std"] }
risc0-zkvm = { version = "1.1.0-rc.3", default-features = false, features = ["std"] }

# Force the `compile-time-rng` feature, to prevent `getrandom` from being used.
ahash = { version = "0.8", default-features = false, features = ["compile-time-rng"] }
Expand Down

0 comments on commit 0dbffa1

Please sign in to comment.