Skip to content

Commit 03974f5

Browse files
authored
Release 0.1.0-alpha.2 (#14)
* Cut the number of Cargo.toml keywords down to 5 Need to satisfy the limit imposed by crates.io. * proto: improve crate metadata "network-programming" is a better category for cometbft-proto than "database". "protobuf" is a more precise keyword. * Make tools crates unpublishable Remove the version field from Cargo.toml of most of these crates as well. These are optional for crates that don't get published in registries. * Add license fields to metadata of tools crates
1 parent 0500e5d commit 03974f5

File tree

18 files changed

+61
-50
lines changed

18 files changed

+61
-50
lines changed
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
This release has changes only in crate metadata to satisfy
2+
restrictions at [crates.io](https://crates.io/).

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# CHANGELOG
22

3+
## v0.1.0-alpha.2
4+
5+
This release has changes only in crate metadata to satisfy
6+
restrictions at [crates.io](https://crates.io/).
7+
38
## v0.1.0-alpha.1
49

510
First pre-release of the crates under cometbft-rs naming.

cometbft/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
[package]
22
name = "cometbft"
3-
version = "0.1.0-alpha.1" # Also update depending crates (rpc, light-node, etc..) when bumping this .
3+
version = "0.1.0-alpha.2" # Also update depending crates (rpc, light-node, etc..) when bumping this .
44
license = "Apache-2.0"
55
homepage = "https://cometbft.com/"
66
repository = "https://github.com/cometbft/cometbft-rs"
77
readme = "../README.md"
88
categories = ["cryptography", "cryptography::cryptocurrencies", "database"]
9-
keywords = ["blockchain", "bft", "consensus", "cosmos", "cometbft", "tendermint"]
9+
keywords = ["blockchain", "bft", "consensus", "cometbft", "tendermint"]
1010
edition = "2021"
1111

1212
description = """
@@ -44,7 +44,7 @@ serde_repr = { version = "0.1", default-features = false }
4444
signature = { version = "2", default-features = false, features = ["alloc"] }
4545
subtle = { version = "2", default-features = false }
4646
subtle-encoding = { version = "0.5", default-features = false, features = ["bech32-preview"] }
47-
cometbft-proto = { version = "0.1.0-alpha.1", default-features = false, path = "../proto" }
47+
cometbft-proto = { version = "0.1.0-alpha.2", default-features = false, path = "../proto" }
4848
time = { version = "0.3", default-features = false, features = ["macros", "parsing"] }
4949
zeroize = { version = "1.1", default-features = false, features = ["zeroize_derive", "alloc"] }
5050
flex-error = { version = "0.4.4", default-features = false }

config/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
[package]
22
name = "cometbft-config"
3-
version = "0.1.0-alpha.1" # Also update depending crates (rpc, light-node, ..) when bumping this.
3+
version = "0.1.0-alpha.2" # Also update depending crates (rpc, light-node, ..) when bumping this.
44
license = "Apache-2.0"
55
homepage = "https://cometbft.com/"
66
repository = "https://github.com/cometbft/cometbft-rs"
77
readme = "../README.md"
88
categories = ["cryptography", "cryptography::cryptocurrencies", "database"]
9-
keywords = ["blockchain", "bft", "consensus", "cosmos", "cometbft", "tendermint"]
9+
keywords = ["blockchain", "bft", "consensus", "cometbft", "tendermint"]
1010
edition = "2021"
1111

1212
description = """
@@ -24,7 +24,7 @@ all-features = true
2424
rustdoc-args = ["--cfg", "docsrs"]
2525

2626
[dependencies]
27-
cometbft = { version = "0.1.0-alpha.1", default-features = false, features = ["rust-crypto"], path = "../cometbft" }
27+
cometbft = { version = "0.1.0-alpha.2", default-features = false, features = ["rust-crypto"], path = "../cometbft" }
2828
flex-error = { version = "0.4.4", default-features = false }
2929
serde = { version = "1", features = ["derive"] }
3030
serde_json = "1"

light-client-cli/Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
[package]
22
name = "cometbft-light-client-cli"
3-
version = "0.1.0-alpha.1"
3+
version = "0.1.0-alpha.2"
44
edition = "2021"
55
license = "Apache-2.0"
66
readme = "README.md"
7-
keywords = ["blockchain", "bft", "consensus", "cosmos", "cometbft", "tendermint"]
7+
keywords = ["blockchain", "bft", "consensus", "cometbft", "tendermint"]
88
categories = ["cryptography::cryptocurrencies", "network-programming"]
99
repository = "https://github.com/cometbft/cometbft-rs"
1010
authors = [
@@ -23,10 +23,10 @@ all-features = true
2323
rustdoc-args = ["--cfg", "docsrs"]
2424

2525
[dependencies]
26-
cometbft = { version = "0.1.0-alpha.1", path = "../cometbft" }
27-
cometbft-rpc = { version = "0.1.0-alpha.1", path = "../rpc", features = ["http-client"] }
28-
cometbft-light-client = { version = "0.1.0-alpha.1", path = "../light-client" }
29-
cometbft-light-client-detector = { version = "0.1.0-alpha.1", path = "../light-client-detector" }
26+
cometbft = { version = "0.1.0-alpha.2", path = "../cometbft" }
27+
cometbft-rpc = { version = "0.1.0-alpha.2", path = "../rpc", features = ["http-client"] }
28+
cometbft-light-client = { version = "0.1.0-alpha.2", path = "../light-client" }
29+
cometbft-light-client-detector = { version = "0.1.0-alpha.2", path = "../light-client-detector" }
3030

3131
clap = { version = "4.1.8", features = ["derive"] }
3232
color-eyre = "0.6.2"

light-client-detector/Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
[package]
22
name = "cometbft-light-client-detector"
3-
version = "0.1.0-alpha.1"
3+
version = "0.1.0-alpha.2"
44
edition = "2021"
55
license = "Apache-2.0"
66
readme = "README.md"
7-
keywords = ["blockchain", "bft", "consensus", "cosmos", "cometbft", "tendermint"]
7+
keywords = ["blockchain", "bft", "consensus", "cometbft", "tendermint"]
88
categories = ["cryptography::cryptocurrencies", "network-programming"]
99
repository = "https://github.com/cometbft/cometbft-rs"
1010
authors = [
@@ -23,10 +23,10 @@ all-features = true
2323
rustdoc-args = ["--cfg", "docsrs"]
2424

2525
[dependencies]
26-
cometbft = { version = "0.1.0-alpha.1", path = "../cometbft" }
27-
cometbft-rpc = { version = "0.1.0-alpha.1", path = "../rpc", features = ["http-client"] }
28-
cometbft-proto = { version = "0.1.0-alpha.1", path = "../proto" }
29-
cometbft-light-client = { version = "0.1.0-alpha.1", path = "../light-client" }
26+
cometbft = { version = "0.1.0-alpha.2", path = "../cometbft" }
27+
cometbft-rpc = { version = "0.1.0-alpha.2", path = "../rpc", features = ["http-client"] }
28+
cometbft-proto = { version = "0.1.0-alpha.2", path = "../proto" }
29+
cometbft-light-client = { version = "0.1.0-alpha.2", path = "../light-client" }
3030

3131
crossbeam-channel = { version = "0.5.11", default-features = false }
3232
derive_more = { version = "0.99.5", default-features = false, features = ["display"] }

light-client-js/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
[package]
22
name = "cometbft-light-client-js"
3-
version = "0.1.0-alpha.1"
3+
version = "0.1.0-alpha.2"
44
authors = ["Informal Systems <hello@informal.systems>"]
55
edition = "2021"
66
license = "Apache-2.0"
77
readme = "README.md"
8-
keywords = ["blockchain", "bft", "consensus", "light-client", "cometbft", "tendermint"]
8+
keywords = ["blockchain", "bft", "consensus", "cometbft", "tendermint"]
99
categories = ["cryptography::cryptocurrencies", "network-programming"]
1010
repository = "https://github.com/cometbft/cometbft-rs"
1111
description = """
@@ -22,8 +22,8 @@ default = ["console_error_panic_hook"]
2222
[dependencies]
2323
serde = { version = "1.0", default-features = false, features = [ "derive" ] }
2424
serde_json = { version = "1.0", default-features = false }
25-
cometbft = { version = "0.1.0-alpha.1", default-features = false, path = "../cometbft" }
26-
cometbft-light-client-verifier = { version = "0.1.0-alpha.1", features = ["rust-crypto"], default-features = false, path = "../light-client-verifier" }
25+
cometbft = { version = "0.1.0-alpha.2", default-features = false, path = "../cometbft" }
26+
cometbft-light-client-verifier = { version = "0.1.0-alpha.2", features = ["rust-crypto"], default-features = false, path = "../light-client-verifier" }
2727
wasm-bindgen = { version = "0.2.63", default-features = false, features = [ "serde-serialize" ] }
2828
serde-wasm-bindgen = { version = "0.4.5", default-features = false }
2929

light-client-verifier/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
[package]
22
name = "cometbft-light-client-verifier"
3-
version = "0.1.0-alpha.1"
3+
version = "0.1.0-alpha.2"
44
edition = "2021"
55
license = "Apache-2.0"
66
readme = "README.md"
7-
keywords = ["blockchain", "bft", "consensus", "cosmos", "cometbft", "tendermint"]
7+
keywords = ["blockchain", "bft", "consensus", "cometbft", "tendermint"]
88
categories = ["cryptography::cryptocurrencies", "network-programming"]
99
repository = "https://github.com/cometbft/cometbft-rs"
1010
authors = [
@@ -27,7 +27,7 @@ default = ["rust-crypto", "flex-error/std"]
2727
rust-crypto = ["cometbft/rust-crypto"]
2828

2929
[dependencies]
30-
cometbft = { version = "0.1.0-alpha.1", path = "../cometbft", default-features = false }
30+
cometbft = { version = "0.1.0-alpha.2", path = "../cometbft", default-features = false }
3131

3232
derive_more = { version = "0.99.5", default-features = false, features = ["display"] }
3333
serde = { version = "1.0.106", default-features = false }

light-client/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
[package]
22
name = "cometbft-light-client"
3-
version = "0.1.0-alpha.1"
3+
version = "0.1.0-alpha.2"
44
edition = "2021"
55
license = "Apache-2.0"
66
readme = "README.md"
7-
keywords = ["blockchain", "bft", "consensus", "cosmos", "cometbft", "tendermint"]
7+
keywords = ["blockchain", "bft", "consensus", "cometbft", "tendermint"]
88
categories = ["cryptography::cryptocurrencies", "network-programming"]
99
repository = "https://github.com/cometbft/cometbft-rs"
1010
authors = [
@@ -35,9 +35,9 @@ unstable = ["rust-crypto"]
3535
mbt = ["rust-crypto"]
3636

3737
[dependencies]
38-
cometbft = { version = "0.1.0-alpha.1", path = "../cometbft", default-features = false }
39-
cometbft-rpc = { version = "0.1.0-alpha.1", path = "../rpc", default-features = false }
40-
cometbft-light-client-verifier = { version = "0.1.0-alpha.1", path = "../light-client-verifier", default-features = false }
38+
cometbft = { version = "0.1.0-alpha.2", path = "../cometbft", default-features = false }
39+
cometbft-rpc = { version = "0.1.0-alpha.2", path = "../rpc", default-features = false }
40+
cometbft-light-client-verifier = { version = "0.1.0-alpha.2", path = "../light-client-verifier", default-features = false }
4141

4242
contracts = { version = "0.6.2", default-features = false }
4343
crossbeam-channel = { version = "0.5.11", default-features = false, features = ["std"] }

pbt-gen/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cometbft-pbt-gen"
3-
version = "0.1.0-alpha.1"
3+
version = "0.1.0-alpha.2"
44
authors = ["Informal Systems <hello@informal.systems>"]
55
edition = "2021"
66
license = "Apache-2.0"

0 commit comments

Comments
 (0)