Skip to content

Commit d972dce

Browse files
[release] v0.0.55 (#1262)
1 parent 23ecee6 commit d972dce

26 files changed

Lines changed: 63 additions & 63 deletions

File tree

Cargo.lock

Lines changed: 24 additions & 24 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -29,19 +29,19 @@ members = [
2929
resolver = "2"
3030

3131
[workspace.dependencies]
32-
commonware-broadcast = { version = "0.0.54", path = "broadcast" }
33-
commonware-codec = { version = "0.0.54", path = "codec" }
34-
commonware-collector = { version = "0.0.54", path = "collector" }
35-
commonware-consensus = { version = "0.0.54", path = "consensus" }
36-
commonware-cryptography = { version = "0.0.54", path = "cryptography" }
37-
commonware-deployer = { version = "0.0.54", path = "deployer", default-features = false }
38-
commonware-macros = { version = "0.0.54", path = "macros" }
39-
commonware-p2p = { version = "0.0.54", path = "p2p" }
40-
commonware-resolver = { version = "0.0.54", path = "resolver" }
41-
commonware-runtime = { version = "0.0.54", path = "runtime" }
42-
commonware-storage = { version = "0.0.54", path = "storage" }
43-
commonware-stream = { version = "0.0.54", path = "stream" }
44-
commonware-utils = { version = "0.0.54", path = "utils" }
32+
commonware-broadcast = { version = "0.0.55", path = "broadcast" }
33+
commonware-codec = { version = "0.0.55", path = "codec" }
34+
commonware-collector = { version = "0.0.55", path = "collector" }
35+
commonware-consensus = { version = "0.0.55", path = "consensus" }
36+
commonware-cryptography = { version = "0.0.55", path = "cryptography" }
37+
commonware-deployer = { version = "0.0.55", path = "deployer", default-features = false }
38+
commonware-macros = { version = "0.0.55", path = "macros" }
39+
commonware-p2p = { version = "0.0.55", path = "p2p" }
40+
commonware-resolver = { version = "0.0.55", path = "resolver" }
41+
commonware-runtime = { version = "0.0.55", path = "runtime" }
42+
commonware-storage = { version = "0.0.55", path = "storage" }
43+
commonware-stream = { version = "0.0.55", path = "stream" }
44+
commonware-utils = { version = "0.0.55", path = "utils" }
4545
thiserror = "2.0.12"
4646
bytes = "1.7.1"
4747
sha2 = "0.10.8"

broadcast/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "commonware-broadcast"
33
edition = "2021"
44
publish = true
5-
version = "0.0.54"
5+
version = "0.0.55"
66
license = "MIT OR Apache-2.0"
77
description = "Disseminate data over a wide-area network."
88
readme = "README.md"

codec/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "commonware-codec"
33
edition = "2021"
44
publish = true
5-
version = "0.0.54"
5+
version = "0.0.55"
66
license = "MIT OR Apache-2.0"
77
description = "Serialize structured data."
88
readme = "README.md"

codec/fuzz/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "commonware-codec-fuzz"
3-
version = "0.0.1"
3+
version = "0.0.55"
44
publish = false
55
edition = "2021"
66

@@ -22,4 +22,4 @@ name = "roundtrip"
2222
path = "fuzz_targets/codec_roundtrip.rs"
2323
test = false
2424
doc = false
25-
bench = false
25+
bench = false

collector/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "commonware-collector"
33
edition = "2021"
44
publish = true
5-
version = "0.0.54"
5+
version = "0.0.55"
66
license = "MIT OR Apache-2.0"
77
description = "Collect responses to committable requests."
88
readme = "README.md"
@@ -30,4 +30,4 @@ thiserror = { workspace = true }
3030
tracing-subscriber = { workspace = true }
3131

3232
[lib]
33-
bench = false
33+
bench = false

consensus/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "commonware-consensus"
33
edition = "2021"
44
publish = true
5-
version = "0.0.54"
5+
version = "0.0.55"
66
license = "MIT OR Apache-2.0"
77
description = "Order opaque messages in a Byzantine environment."
88
readme = "README.md"

cryptography/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "commonware-cryptography"
33
edition = "2021"
44
publish = true
5-
version = "0.0.54"
5+
version = "0.0.55"
66
license = "MIT OR Apache-2.0"
77
description = "Generate keys, sign arbitrary messages, and deterministically verify signatures."
88
readme = "README.md"

cryptography/fuzz/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "commonware-cryptography-fuzz"
3-
version = "0.0.1"
3+
version = "0.0.55"
44
publish = false
55
edition = "2021"
66

deployer/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "commonware-deployer"
33
edition = "2021"
44
publish = true
5-
version = "0.0.54"
5+
version = "0.0.55"
66
license = "MIT OR Apache-2.0"
77
description = "Deploy infrastructure across cloud providers."
88
readme = "README.md"

0 commit comments

Comments
 (0)