Skip to content

Commit

Permalink
fix: downgrade for release plz (#458)
Browse files Browse the repository at this point in the history
  • Loading branch information
refcell authored Aug 24, 2024
1 parent 19b00f3 commit d37a79c
Show file tree
Hide file tree
Showing 8 changed files with 17 additions and 17 deletions.
6 changes: 3 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions bin/client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }
Expand Down
4 changes: 2 additions & 2 deletions bin/host/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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" }
Expand Down
4 changes: 2 additions & 2 deletions bin/kt/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"] }
4 changes: 2 additions & 2 deletions crates/derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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"
Expand Down
4 changes: 2 additions & 2 deletions crates/executor/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion crates/primitives/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 2 additions & 2 deletions examples/trusted-sync/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit d37a79c

Please sign in to comment.