diff --git a/cometbft/Cargo.toml b/cometbft/Cargo.toml index 8f2f6cbe..7d3d5101 100644 --- a/cometbft/Cargo.toml +++ b/cometbft/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cometbft" -version = "0.34.0" # Also update depending crates (rpc, light-node, etc..) when bumping this . +version = "0.1.0-alpha.1" # Also update depending crates (rpc, light-node, etc..) when bumping this . license = "Apache-2.0" homepage = "https://cometbft.com/" repository = "https://github.com/cometbft/cometbft-rs" @@ -44,7 +44,7 @@ serde_repr = { version = "0.1", default-features = false } signature = { version = "2", default-features = false, features = ["alloc"] } subtle = { version = "2", default-features = false } subtle-encoding = { version = "0.5", default-features = false, features = ["bech32-preview"] } -cometbft-proto = { version = "0.34.0", default-features = false, path = "../proto" } +cometbft-proto = { version = "0.1.0-alpha.1", default-features = false, path = "../proto" } time = { version = "0.3", default-features = false, features = ["macros", "parsing"] } zeroize = { version = "1.1", default-features = false, features = ["zeroize_derive", "alloc"] } flex-error = { version = "0.4.4", default-features = false } diff --git a/config/Cargo.toml b/config/Cargo.toml index 103901d9..e32e0448 100644 --- a/config/Cargo.toml +++ b/config/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cometbft-config" -version = "0.34.0" # Also update depending crates (rpc, light-node, ..) when bumping this. +version = "0.1.0-alpha.1" # Also update depending crates (rpc, light-node, ..) when bumping this. license = "Apache-2.0" homepage = "https://cometbft.com/" repository = "https://github.com/cometbft/cometbft-rs" @@ -24,7 +24,7 @@ all-features = true rustdoc-args = ["--cfg", "docsrs"] [dependencies] -cometbft = { version = "0.34.0", default-features = false, features = ["rust-crypto"], path = "../cometbft" } +cometbft = { version = "0.1.0-alpha.1", default-features = false, features = ["rust-crypto"], path = "../cometbft" } flex-error = { version = "0.4.4", default-features = false } serde = { version = "1", features = ["derive"] } serde_json = "1" diff --git a/light-client-cli/Cargo.toml b/light-client-cli/Cargo.toml index 3c8cd1ec..94f95b5f 100644 --- a/light-client-cli/Cargo.toml +++ b/light-client-cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cometbft-light-client-cli" -version = "0.34.0" +version = "0.1.0-alpha.1" edition = "2021" license = "Apache-2.0" readme = "README.md" @@ -23,10 +23,10 @@ all-features = true rustdoc-args = ["--cfg", "docsrs"] [dependencies] -cometbft = { version = "0.34.0", path = "../cometbft" } -cometbft-rpc = { version = "0.34.0", path = "../rpc", features = ["http-client"] } -cometbft-light-client = { version = "0.34.0", path = "../light-client" } -cometbft-light-client-detector = { version = "0.34.0", path = "../light-client-detector" } +cometbft = { version = "0.1.0-alpha.1", path = "../cometbft" } +cometbft-rpc = { version = "0.1.0-alpha.1", path = "../rpc", features = ["http-client"] } +cometbft-light-client = { version = "0.1.0-alpha.1", path = "../light-client" } +cometbft-light-client-detector = { version = "0.1.0-alpha.1", path = "../light-client-detector" } clap = { version = "4.1.8", features = ["derive"] } color-eyre = "0.6.2" diff --git a/light-client-detector/Cargo.toml b/light-client-detector/Cargo.toml index a512aa54..04755989 100644 --- a/light-client-detector/Cargo.toml +++ b/light-client-detector/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cometbft-light-client-detector" -version = "0.34.0" +version = "0.1.0-alpha.1" edition = "2021" license = "Apache-2.0" readme = "README.md" @@ -23,10 +23,10 @@ all-features = true rustdoc-args = ["--cfg", "docsrs"] [dependencies] -cometbft = { version = "0.34.0", path = "../cometbft" } -cometbft-rpc = { version = "0.34.0", path = "../rpc", features = ["http-client"] } -cometbft-proto = { version = "0.34.0", path = "../proto" } -cometbft-light-client = { version = "0.34.0", path = "../light-client" } +cometbft = { version = "0.1.0-alpha.1", path = "../cometbft" } +cometbft-rpc = { version = "0.1.0-alpha.1", path = "../rpc", features = ["http-client"] } +cometbft-proto = { version = "0.1.0-alpha.1", path = "../proto" } +cometbft-light-client = { version = "0.1.0-alpha.1", path = "../light-client" } contracts = { version = "0.6.2", default-features = false } crossbeam-channel = { version = "0.4.2", default-features = false } diff --git a/light-client-js/Cargo.toml b/light-client-js/Cargo.toml index 1f848d17..00dc31af 100644 --- a/light-client-js/Cargo.toml +++ b/light-client-js/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cometbft-light-client-js" -version = "0.34.0" +version = "0.1.0-alpha.1" authors = ["Informal Systems "] edition = "2021" license = "Apache-2.0" @@ -22,8 +22,8 @@ default = ["console_error_panic_hook"] [dependencies] serde = { version = "1.0", default-features = false, features = [ "derive" ] } serde_json = { version = "1.0", default-features = false } -cometbft = { version = "0.34.0", default-features = false, path = "../cometbft" } -cometbft-light-client-verifier = { version = "0.34.0", features = ["rust-crypto"], default-features = false, path = "../light-client-verifier" } +cometbft = { version = "0.1.0-alpha.1", default-features = false, path = "../cometbft" } +cometbft-light-client-verifier = { version = "0.1.0-alpha.1", features = ["rust-crypto"], default-features = false, path = "../light-client-verifier" } wasm-bindgen = { version = "0.2.63", default-features = false, features = [ "serde-serialize" ] } serde-wasm-bindgen = { version = "0.4.5", default-features = false } diff --git a/light-client-verifier/Cargo.toml b/light-client-verifier/Cargo.toml index 69b68c0b..f786009d 100644 --- a/light-client-verifier/Cargo.toml +++ b/light-client-verifier/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cometbft-light-client-verifier" -version = "0.34.0" +version = "0.1.0-alpha.1" edition = "2021" license = "Apache-2.0" readme = "README.md" @@ -27,7 +27,7 @@ default = ["rust-crypto", "flex-error/std"] rust-crypto = ["cometbft/rust-crypto"] [dependencies] -cometbft = { version = "0.34.0", path = "../cometbft", default-features = false } +cometbft = { version = "0.1.0-alpha.1", path = "../cometbft", default-features = false } derive_more = { version = "0.99.5", default-features = false, features = ["display"] } serde = { version = "1.0.106", default-features = false } diff --git a/light-client/Cargo.toml b/light-client/Cargo.toml index 700d8aa6..07e9b2e7 100644 --- a/light-client/Cargo.toml +++ b/light-client/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cometbft-light-client" -version = "0.34.0" +version = "0.1.0-alpha.1" edition = "2021" license = "Apache-2.0" readme = "README.md" @@ -35,9 +35,9 @@ unstable = ["rust-crypto"] mbt = ["rust-crypto"] [dependencies] -cometbft = { version = "0.34.0", path = "../cometbft", default-features = false } -cometbft-rpc = { version = "0.34.0", path = "../rpc", default-features = false } -cometbft-light-client-verifier = { version = "0.34.0", path = "../light-client-verifier", default-features = false } +cometbft = { version = "0.1.0-alpha.1", path = "../cometbft", default-features = false } +cometbft-rpc = { version = "0.1.0-alpha.1", path = "../rpc", default-features = false } +cometbft-light-client-verifier = { version = "0.1.0-alpha.1", path = "../light-client-verifier", default-features = false } contracts = { version = "0.6.2", default-features = false } crossbeam-channel = { version = "0.4.2", default-features = false } diff --git a/pbt-gen/Cargo.toml b/pbt-gen/Cargo.toml index 9a04b354..c4f6f92c 100644 --- a/pbt-gen/Cargo.toml +++ b/pbt-gen/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cometbft-pbt-gen" -version = "0.34.0" +version = "0.1.0-alpha.1" authors = ["Informal Systems "] edition = "2021" license = "Apache-2.0" diff --git a/proto/Cargo.toml b/proto/Cargo.toml index fc593c8d..865813b1 100644 --- a/proto/Cargo.toml +++ b/proto/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cometbft-proto" -version = "0.34.0" +version = "0.1.0-alpha.1" authors = ["Informal Systems "] edition = "2021" license = "Apache-2.0" diff --git a/rpc/Cargo.toml b/rpc/Cargo.toml index db60557e..4ea09746 100644 --- a/rpc/Cargo.toml +++ b/rpc/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cometbft-rpc" -version = "0.34.0" +version = "0.1.0-alpha.1" edition = "2021" license = "Apache-2.0" homepage = "https://cometbft.com/" @@ -55,9 +55,9 @@ websocket-client = [ ] [dependencies] -cometbft = { version = "0.34.0", default-features = false, path = "../cometbft" } -cometbft-config = { version = "0.34.0", path = "../config", default-features = false } -cometbft-proto = { version = "0.34.0", path = "../proto", default-features = false } +cometbft = { version = "0.1.0-alpha.1", default-features = false, path = "../cometbft" } +cometbft-config = { version = "0.1.0-alpha.1", path = "../config", default-features = false } +cometbft-proto = { version = "0.1.0-alpha.1", path = "../proto", default-features = false } async-trait = { version = "0.1", default-features = false } bytes = { version = "1.0", default-features = false } diff --git a/testgen/Cargo.toml b/testgen/Cargo.toml index b05d27bd..8c09a80a 100644 --- a/testgen/Cargo.toml +++ b/testgen/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cometbft-testgen" -version = "0.34.0" +version = "0.1.0-alpha.1" authors = ["Informal Systems "] edition = "2021" readme = "README.md" @@ -16,7 +16,7 @@ description = """ """ [dependencies] -cometbft = { version = "0.34.0", path = "../cometbft", features = ["clock"] } +cometbft = { version = "0.1.0-alpha.1", path = "../cometbft", features = ["clock"] } serde = { version = "1", default-features = false, features = ["derive"] } serde_json = { version = "1", default-features = false, features = ["std"] } ed25519-consensus = { version = "2", default-features = false } diff --git a/tools/abci-test/Cargo.toml b/tools/abci-test/Cargo.toml index f4eba2f1..9904ca1e 100644 --- a/tools/abci-test/Cargo.toml +++ b/tools/abci-test/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "abci-test" -version = "0.34.0" +version = "0.1.0" authors = ["Informal Systems "] edition = "2021" description = """ @@ -14,9 +14,9 @@ description = """ flex-error = { version = "0.4.4", default-features = false, features = ["std"] } futures = "0.3" structopt = "0.3" -cometbft = { version = "0.34.0", path = "../../cometbft" } -cometbft-config = { version = "0.34.0", path = "../../config" } -cometbft-rpc = { version = "0.34.0", path = "../../rpc", features = [ "websocket-client" ] } +cometbft = { version = "0.1.0-alpha.1", path = "../../cometbft" } +cometbft-config = { version = "0.1.0-alpha.1", path = "../../config" } +cometbft-rpc = { version = "0.1.0-alpha.1", path = "../../rpc", features = [ "websocket-client" ] } tracing = "0.1" tracing-subscriber = "0.2" tokio = { version = "1.20", features = ["full"] } diff --git a/tools/kvstore-test/Cargo.toml b/tools/kvstore-test/Cargo.toml index 4ed0b3ea..0f6e6953 100644 --- a/tools/kvstore-test/Cargo.toml +++ b/tools/kvstore-test/Cargo.toml @@ -11,9 +11,9 @@ edition = "2021" [dev-dependencies] futures = "0.3" sha2 = "0.10" -cometbft = { version = "0.34.0", path = "../../cometbft" } -cometbft-light-client = { version = "0.34.0", path = "../../light-client", features = ["unstable"] } -cometbft-rpc = { version = "0.34.0", path = "../../rpc", features = [ "http-client", "websocket-client" ] } +cometbft = { version = "0.1.0-alpha.1", path = "../../cometbft" } +cometbft-light-client = { version = "0.1.0-alpha.1", path = "../../light-client", features = ["unstable"] } +cometbft-rpc = { version = "0.1.0-alpha.1", path = "../../rpc", features = [ "http-client", "websocket-client" ] } tokio = { version = "1.0", features = [ "rt-multi-thread", "macros" ] } tracing = "0.1" tracing-subscriber = "0.3" diff --git a/tools/rpc-probe/Cargo.toml b/tools/rpc-probe/Cargo.toml index 96bc20da..83b1e7fd 100644 --- a/tools/rpc-probe/Cargo.toml +++ b/tools/rpc-probe/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cometbft-rpc-probe" -version = "0.34.0" +version = "0.1.0" authors = ["Informal Systems "] edition = "2021" license = "Apache-2.0"