From d37a79c2432b069a33b2b20059057b5d31a79fbe Mon Sep 17 00:00:00 2001 From: refcell Date: Sat, 24 Aug 2024 10:33:02 -0400 Subject: [PATCH] fix: downgrade for release plz (#458) --- Cargo.lock | 6 +++--- bin/client/Cargo.toml | 6 +++--- bin/host/Cargo.toml | 4 ++-- bin/kt/Cargo.toml | 4 ++-- crates/derive/Cargo.toml | 4 ++-- crates/executor/Cargo.toml | 4 ++-- crates/primitives/Cargo.toml | 2 +- examples/trusted-sync/Cargo.toml | 4 ++-- 8 files changed, 17 insertions(+), 17 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index bbce130e..2d2a8a43 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4055,7 +4055,7 @@ dependencies = [ [[package]] name = "kona-derive" -version = "0.0.3" +version = "0.0.2" dependencies = [ "alloc-no-stdlib", "alloy-consensus", @@ -4093,7 +4093,7 @@ dependencies = [ [[package]] name = "kona-executor" -version = "0.0.2" +version = "0.0.1" dependencies = [ "alloy-consensus", "alloy-eips", @@ -4186,7 +4186,7 @@ dependencies = [ [[package]] name = "kona-primitives" -version = "0.0.2" +version = "0.0.1" dependencies = [ "alloy-consensus", "alloy-eips", diff --git a/bin/client/Cargo.toml b/bin/client/Cargo.toml index a70bc58f..ded48d6d 100644 --- a/bin/client/Cargo.toml +++ b/bin/client/Cargo.toml @@ -30,9 +30,9 @@ kona-common = { path = "../../crates/common", version = "0.0.2" } kona-common-proc = { path = "../../crates/common-proc", version = "0.0.2" } kona-preimage = { path = "../../crates/preimage", version = "0.0.2" } kona-mpt = { path = "../../crates/mpt", version = "0.0.2" } -kona-derive = { path = "../../crates/derive", default-features = false, version = "0.0.3" } -kona-executor = { path = "../../crates/executor", version = "0.0.2" } -kona-primitives = { path = "../../crates/primitives", version = "0.0.2", features = ["serde"] } +kona-derive = { path = "../../crates/derive", default-features = false, version = "0.0.2" } +kona-executor = { path = "../../crates/executor", version = "0.0.1" } +kona-primitives = { path = "../../crates/primitives", version = "0.0.1", features = ["serde"] } # external tracing-subscriber = { version = "0.3.18", optional = true } diff --git a/bin/host/Cargo.toml b/bin/host/Cargo.toml index d79b158b..b58a8f18 100644 --- a/bin/host/Cargo.toml +++ b/bin/host/Cargo.toml @@ -24,8 +24,8 @@ kona-client = { path = "../client", version = "0.1.0" } kona-common = { path = "../../crates/common", version = "0.0.2" } kona-preimage = { path = "../../crates/preimage", version = "0.0.2" } kona-mpt = { path = "../../crates/mpt", version = "0.0.2" } -kona-primitives = { path = "../../crates/primitives", version = "0.0.2", features = ["online"] } -kona-derive = { path = "../../crates/derive", version = "0.0.3", features = ["online"] } +kona-primitives = { path = "../../crates/primitives", version = "0.0.1", features = ["online"] } +kona-derive = { path = "../../crates/derive", version = "0.0.2", features = ["online"] } # external alloy-provider = { version = "0.2" } diff --git a/bin/kt/Cargo.toml b/bin/kt/Cargo.toml index 62dba716..a34a2545 100644 --- a/bin/kt/Cargo.toml +++ b/bin/kt/Cargo.toml @@ -32,5 +32,5 @@ color-eyre = "0.6" # For op-test-vector dependency clap = { version = "4", features = ["derive", "env"] } op-test-vectors = { git = "https://github.com/ethereum-optimism/tests", branch = "main" } include_directory = "0.1.1" -kona-primitives = { path = "../../crates/primitives", version = "0.0.2", features = ["online"] } -kona-derive = { path = "../../crates/derive", version = "0.0.3", features = ["online"] } +kona-primitives = { path = "../../crates/primitives", version = "0.0.1", features = ["online"] } +kona-derive = { path = "../../crates/derive", version = "0.0.2", features = ["online"] } diff --git a/crates/derive/Cargo.toml b/crates/derive/Cargo.toml index 6eeb4bc4..7741dbc1 100644 --- a/crates/derive/Cargo.toml +++ b/crates/derive/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "kona-derive" description = "A no_std derivation pipeline implementation for the OP Stack" -version = "0.0.3" +version = "0.0.2" edition.workspace = true authors.workspace = true license.workspace = true @@ -25,7 +25,7 @@ async-trait.workspace = true revm = { workspace = true, optional = true } # Local -kona-primitives = { path = "../primitives", version = "0.0.2" } +kona-primitives = { path = "../primitives", version = "0.0.1", default-features = false } # External hashbrown = "0.14.5" diff --git a/crates/executor/Cargo.toml b/crates/executor/Cargo.toml index 3093cf17..d6ea9873 100644 --- a/crates/executor/Cargo.toml +++ b/crates/executor/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "kona-executor" description = "An no_std implementation of a stateless L2 block executor for the OP Stack." -version = "0.0.2" +version = "0.0.1" edition.workspace = true authors.workspace = true license.workspace = true @@ -20,7 +20,7 @@ revm = { workspace = true, features = ["optimism"] } # local kona-mpt = { path = "../mpt", version = "0.0.2" } -kona-primitives = { path = "../primitives", version = "0.0.2" } +kona-primitives = { path = "../primitives", version = "0.0.1", default-feature = false } [dev-dependencies] alloy-rlp.workspace = true diff --git a/crates/primitives/Cargo.toml b/crates/primitives/Cargo.toml index 3b0f6944..c8c3b7d8 100644 --- a/crates/primitives/Cargo.toml +++ b/crates/primitives/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "kona-primitives" description = "Primitive types for kona crates" -version = "0.0.2" +version = "0.0.1" edition.workspace = true authors.workspace = true license.workspace = true diff --git a/examples/trusted-sync/Cargo.toml b/examples/trusted-sync/Cargo.toml index ab3f7882..f43eb07f 100644 --- a/examples/trusted-sync/Cargo.toml +++ b/examples/trusted-sync/Cargo.toml @@ -14,8 +14,8 @@ homepage.workspace = true anyhow.workspace = true tracing.workspace = true alloy-primitives = { workspace = true, features = ["serde"] } -kona-primitives = { path = "../../crates/primitives", version = "0.0.2", features = ["serde"] } -kona-derive = { path = "../../crates/derive", version = "0.0.3", features = ["serde", "online", "metrics"] } +kona-primitives = { path = "../../crates/primitives", version = "0.0.1", features = ["serde"] } +kona-derive = { path = "../../crates/derive", version = "0.0.2", features = ["serde", "online", "metrics"] } # Custom dependencies lazy_static = "1.5.0"