Skip to content

Commit f74a4d0

Browse files
[release] v0.0.62 (#1575)
1 parent 1f1140b commit f74a4d0

32 files changed

Lines changed: 153 additions & 207 deletions

File tree

.github/workflows/fast.yml

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -176,12 +176,3 @@ jobs:
176176
run: |
177177
cd storage
178178
MIRIFLAGS="-Zmiri-disable-isolation" cargo miri test --lib index::
179-
180-
Scripts:
181-
runs-on: ubuntu-latest
182-
timeout-minutes: 10
183-
steps:
184-
- name: Checkout repository
185-
uses: actions/checkout@v4
186-
- name: Run shellcheck
187-
run: find scripts -name "*.sh" -exec shellcheck -o all {} +

Cargo.lock

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

Cargo.toml

Lines changed: 20 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -33,21 +33,27 @@ members = [
3333
]
3434
resolver = "2"
3535

36+
[workspace.package]
37+
version = "0.0.62"
38+
edition = "2021"
39+
license = "MIT OR Apache-2.0"
40+
homepage = "https://commonware.xyz"
41+
3642
[workspace.dependencies]
37-
commonware-broadcast = { version = "0.0.61", path = "broadcast" }
38-
commonware-codec = { version = "0.0.61", path = "codec", default-features = false }
39-
commonware-coding = { version = "0.0.61", path = "coding" }
40-
commonware-collector = { version = "0.0.61", path = "collector" }
41-
commonware-consensus = { version = "0.0.61", path = "consensus" }
42-
commonware-cryptography = { version = "0.0.61", path = "cryptography" }
43-
commonware-deployer = { version = "0.0.61", path = "deployer", default-features = false }
44-
commonware-macros = { version = "0.0.61", path = "macros" }
45-
commonware-p2p = { version = "0.0.61", path = "p2p" }
46-
commonware-resolver = { version = "0.0.61", path = "resolver" }
47-
commonware-runtime = { version = "0.0.61", path = "runtime" }
48-
commonware-storage = { version = "0.0.61", path = "storage" }
49-
commonware-stream = { version = "0.0.61", path = "stream" }
50-
commonware-utils = { version = "0.0.61", path = "utils", default-features = false }
43+
commonware-broadcast = { path = "broadcast" }
44+
commonware-codec = { path = "codec", default-features = false }
45+
commonware-coding = { path = "coding" }
46+
commonware-collector = { path = "collector" }
47+
commonware-consensus = { path = "consensus" }
48+
commonware-cryptography = { path = "cryptography" }
49+
commonware-deployer = { path = "deployer", default-features = false }
50+
commonware-macros = { path = "macros" }
51+
commonware-p2p = { path = "p2p" }
52+
commonware-resolver = { path = "resolver" }
53+
commonware-runtime = { path = "runtime" }
54+
commonware-storage = { path = "storage" }
55+
commonware-stream = { path = "stream" }
56+
commonware-utils = { path = "utils", default-features = false }
5157
anyhow = { version = "1.0.99", default-features = false }
5258
thiserror = { version = "2.0.12", default-features = false }
5359
bytes = { version = "1.7.1", default-features = false }

broadcast/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
[package]
22
name = "commonware-broadcast"
3-
edition = "2021"
3+
edition.workspace = true
44
publish = true
5-
version = "0.0.61"
6-
license = "MIT OR Apache-2.0"
5+
version.workspace = true
6+
license.workspace = true
77
description = "Disseminate data over a wide-area network."
88
readme = "README.md"
9-
homepage = "https://commonware.xyz"
9+
homepage.workspace = true
1010
repository = "https://github.com/commonwarexyz/monorepo/tree/main/broadcast"
1111
documentation = "https://docs.rs/commonware-broadcast"
1212

codec/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
[package]
22
name = "commonware-codec"
3-
edition = "2021"
3+
edition.workspace = true
44
publish = true
5-
version = "0.0.61"
6-
license = "MIT OR Apache-2.0"
5+
version.workspace = true
6+
license.workspace = true
77
description = "Serialize structured data."
88
readme = "README.md"
9-
homepage = "https://commonware.xyz"
9+
homepage.workspace = true
1010
repository = "https://github.com/commonwarexyz/monorepo/tree/main/codec"
1111
documentation = "https://docs.rs/commonware-codec"
1212

codec/fuzz/Cargo.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
[package]
22
name = "commonware-codec-fuzz"
3-
version = "0.0.61"
3+
version.workspace = true
44
publish = false
5-
edition = "2021"
5+
edition.workspace = true
6+
license.workspace = true
67

78
[package.metadata]
89
cargo-fuzz = true

coding/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
[package]
22
name = "commonware-coding"
3-
edition = "2021"
3+
edition.workspace = true
44
publish = true
5-
version = "0.0.61"
6-
license = "MIT OR Apache-2.0"
5+
version.workspace = true
6+
license.workspace = true
77
description = "Encode data to enable recovery from a subset of fragments."
88
readme = "README.md"
9-
homepage = "https://commonware.xyz"
9+
homepage.workspace = true
1010
repository = "https://github.com/commonwarexyz/monorepo/tree/main/coding"
1111
documentation = "https://docs.rs/commonware-coding"
1212

coding/fuzz/Cargo.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
[package]
22
name = "commonware-coding-fuzz"
3-
version = "0.0.61"
3+
version.workspace = true
44
publish = false
5-
edition = "2021"
5+
edition.workspace = true
6+
license.workspace = true
67

78
[package.metadata]
89
cargo-fuzz = true

collector/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
[package]
22
name = "commonware-collector"
3-
edition = "2021"
3+
edition.workspace = true
44
publish = true
5-
version = "0.0.61"
6-
license = "MIT OR Apache-2.0"
5+
version.workspace = true
6+
license.workspace = true
77
description = "Collect responses to committable requests."
88
readme = "README.md"
9-
homepage = "https://commonware.xyz"
9+
homepage.workspace = true
1010
repository = "https://github.com/commonwarexyz/monorepo/tree/main/collector"
1111
documentation = "https://docs.rs/commonware-collector"
1212

0 commit comments

Comments
 (0)