Skip to content

Commit bd6b664

Browse files
[release] v0.0.57 (#1343)
1 parent 013ed34 commit bd6b664

29 files changed

Lines changed: 69 additions & 69 deletions

File tree

Cargo.lock

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

Cargo.toml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -32,20 +32,20 @@ members = [
3232
resolver = "2"
3333

3434
[workspace.dependencies]
35-
commonware-broadcast = { version = "0.0.56", path = "broadcast" }
36-
commonware-codec = { version = "0.0.56", path = "codec" }
37-
commonware-coding = { version = "0.0.56", path = "coding" }
38-
commonware-collector = { version = "0.0.56", path = "collector" }
39-
commonware-consensus = { version = "0.0.56", path = "consensus" }
40-
commonware-cryptography = { version = "0.0.56", path = "cryptography" }
41-
commonware-deployer = { version = "0.0.56", path = "deployer", default-features = false }
42-
commonware-macros = { version = "0.0.56", path = "macros" }
43-
commonware-p2p = { version = "0.0.56", path = "p2p" }
44-
commonware-resolver = { version = "0.0.56", path = "resolver" }
45-
commonware-runtime = { version = "0.0.56", path = "runtime" }
46-
commonware-storage = { version = "0.0.56", path = "storage" }
47-
commonware-stream = { version = "0.0.56", path = "stream" }
48-
commonware-utils = { version = "0.0.56", path = "utils" }
35+
commonware-broadcast = { version = "0.0.57", path = "broadcast" }
36+
commonware-codec = { version = "0.0.57", path = "codec" }
37+
commonware-coding = { version = "0.0.57", path = "coding" }
38+
commonware-collector = { version = "0.0.57", path = "collector" }
39+
commonware-consensus = { version = "0.0.57", path = "consensus" }
40+
commonware-cryptography = { version = "0.0.57", path = "cryptography" }
41+
commonware-deployer = { version = "0.0.57", path = "deployer", default-features = false }
42+
commonware-macros = { version = "0.0.57", path = "macros" }
43+
commonware-p2p = { version = "0.0.57", path = "p2p" }
44+
commonware-resolver = { version = "0.0.57", path = "resolver" }
45+
commonware-runtime = { version = "0.0.57", path = "runtime" }
46+
commonware-storage = { version = "0.0.57", path = "storage" }
47+
commonware-stream = { version = "0.0.57", path = "stream" }
48+
commonware-utils = { version = "0.0.57", path = "utils" }
4949
thiserror = "2.0.12"
5050
bytes = "1.7.1"
5151
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.56"
5+
version = "0.0.57"
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.56"
5+
version = "0.0.57"
66
license = "MIT OR Apache-2.0"
77
description = "Serialize structured data."
88
readme = "README.md"

codec/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-codec-fuzz"
3-
version = "0.0.56"
3+
version = "0.0.57"
44
publish = false
55
edition = "2021"
66

coding/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "commonware-coding"
33
edition = "2021"
44
publish = true
5-
version = "0.0.56"
5+
version = "0.0.57"
66
license = "MIT OR Apache-2.0"
77
description = "Encode data to enable recovery from a subset of fragments."
88
readme = "README.md"

coding/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-coding-fuzz"
3-
version = "0.0.56"
3+
version = "0.0.57"
44
publish = false
55
edition = "2021"
66

@@ -21,4 +21,4 @@ name = "reed_solomon"
2121
path = "fuzz_targets/reed_solomon.rs"
2222
test = false
2323
doc = false
24-
bench = false
24+
bench = false

collector/Cargo.toml

Lines changed: 1 addition & 1 deletion
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.56"
5+
version = "0.0.57"
66
license = "MIT OR Apache-2.0"
77
description = "Collect responses to committable requests."
88
readme = "README.md"

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.56"
5+
version = "0.0.57"
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.56"
5+
version = "0.0.57"
66
license = "MIT OR Apache-2.0"
77
description = "Generate keys, sign arbitrary messages, and deterministically verify signatures."
88
readme = "README.md"

0 commit comments

Comments
 (0)