From 667482a6fffef6b952c735842b4b555fb56865f8 Mon Sep 17 00:00:00 2001 From: capossele Date: Thu, 21 Mar 2024 17:27:34 +0000 Subject: [PATCH] pin version to 0.8.0 for release --- Cargo.lock | 10 +++++----- Cargo.toml | 10 +++++----- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 3f48a379..7bdd48e5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3904,7 +3904,7 @@ dependencies = [ [[package]] name = "risc0-build-ethereum" -version = "0.8.0-alpha.1" +version = "0.8.0" dependencies = [ "anyhow", "hex", @@ -4000,7 +4000,7 @@ dependencies = [ [[package]] name = "risc0-ethereum-contracts" -version = "0.8.0-alpha.1" +version = "0.8.0" dependencies = [ "alloy-primitives", "alloy-sol-types", @@ -4014,7 +4014,7 @@ dependencies = [ [[package]] name = "risc0-ethereum-relay" -version = "0.8.0-alpha.1" +version = "0.8.0" dependencies = [ "anyhow", "async-trait", @@ -4054,14 +4054,14 @@ dependencies = [ [[package]] name = "risc0-ethereum-relay-test-methods" -version = "0.8.0-alpha.1" +version = "0.8.0" dependencies = [ "risc0-build", ] [[package]] name = "risc0-forge-ffi" -version = "0.8.0-alpha.1" +version = "0.8.0" dependencies = [ "alloy-primitives", "anyhow", diff --git a/Cargo.toml b/Cargo.toml index 8a595f09..7f636b6a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ resolver = "2" members = ["build", "contracts", "ffi", "relay", "relay/tests/methods"] [workspace.package] -version = "0.8.0-alpha.1" +version = "0.8.0" edition = "2021" license = "Apache-2.0" homepage = "https://risczero.com/" @@ -11,10 +11,10 @@ repository = "https://github.com/risc0/risc0-ethereum/" [workspace.dependencies] # Intra-workspace dependencies -risc0-build-ethereum = { version = "0.8.0-alpha.1", default-features = false, path = "build" } -risc0-ethereum-contracts = { version = "0.8.0-alpha.1", default-features = false, path = "contracts" } -risc0-ethereum-relay = { version = "0.8.0-alpha.1", default-features = false, path = "relay" } -risc0-forge-ffi = { version = "0.8.0-alpha.1", default-features = false, path = "ffi" } +risc0-build-ethereum = { version = "0.8.0", default-features = false, path = "build" } +risc0-ethereum-contracts = { version = "0.8.0", default-features = false, path = "contracts" } +risc0-ethereum-relay = { version = "0.8.0", default-features = false, path = "relay" } +risc0-forge-ffi = { version = "0.8.0", default-features = false, path = "ffi" } alloy-primitives = { version = "0.6", default-features = false, features = ["rlp", "serde", "std"] } alloy-sol-types = { version = "0.6" }