Skip to content

Commit eba3c33

Browse files
chore: Release
1 parent f851b8b commit eba3c33

File tree

10 files changed

+28
-28
lines changed

10 files changed

+28
-28
lines changed

Cargo.lock

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

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,4 @@ incremental = false
2828
missing_debug_implementations = "warn"
2929

3030
[workspace.lints.clippy]
31-
unused-async = "warn"
31+
unused-async = "warn"

iroh-bytes/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "iroh-bytes"
3-
version = "0.8.0"
3+
version = "0.9.0"
44
edition = "2021"
55
readme = "README.md"
66
description = "blob and collection transfer support for iroh"

iroh-gossip/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "iroh-gossip"
3-
version = "0.8.0"
3+
version = "0.9.0"
44
edition = "2021"
55
readme = "README.md"
66
description = "gossip messages over broadcast trees"
@@ -28,11 +28,11 @@ rand = { version = "0.8.5", features = ["std_rng"] }
2828
rand_core = "0.6.4"
2929
serde = { version = "1.0.164", features = ["derive"] }
3030
tracing = "0.1"
31-
iroh-metrics = { path = "../iroh-metrics", version = "0.8.0" }
31+
iroh-metrics = { path = "../iroh-metrics", version = "0.9.0" }
3232

3333
# net dependencies (optional)
3434
futures = { version = "0.3.25", optional = true }
35-
iroh-net = { path = "../iroh-net", version = "0.8.0", optional = true }
35+
iroh-net = { path = "../iroh-net", version = "0.9.0", optional = true }
3636
quinn = { version = "0.10", optional = true }
3737
tokio = { version = "1", optional = true, features = ["io-util", "sync", "rt", "macros", "net", "fs"] }
3838
tokio-util = { version = "0.7.8", optional = true, features = ["codec"] }

iroh-metrics/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "iroh-metrics"
3-
version = "0.8.0"
3+
version = "0.9.0"
44
edition = "2021"
55
readme = "README.md"
66
description = "metrics for iroh"

iroh-net/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "iroh-net"
3-
version = "0.8.0"
3+
version = "0.9.0"
44
edition = "2021"
55
readme = "README.md"
66
description = "networking support for iroh"
@@ -80,7 +80,7 @@ toml = { version = "0.8", optional = true }
8080
tracing-subscriber = { version = "0.3", features = ["env-filter"], optional = true }
8181

8282
# metrics
83-
iroh-metrics = { version = "0.8.0", path = "../iroh-metrics", default-features = false }
83+
iroh-metrics = { version = "0.9.0", path = "../iroh-metrics", default-features = false }
8484

8585
[target.'cfg(any(target_os = "linux", target_os = "android"))'.dependencies]
8686
netlink-packet-core = "0.7.0"

iroh-net/bench/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "iroh-net-bench"
3-
version = "0.8.0"
3+
version = "0.9.0"
44
edition = "2021"
55
license = "MIT OR Apache-2.0"
66
publish = false

iroh-sync/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "iroh-sync"
3-
version = "0.8.0"
3+
version = "0.9.0"
44
edition = "2021"
55
readme = "README.md"
66
description = "Iroh sync"
@@ -21,8 +21,8 @@ data-encoding = "2.4.0"
2121
derive_more = { version = "1.0.0-beta.1", features = ["debug", "deref", "display", "from", "try_into", "into", "as_ref"] }
2222
ed25519-dalek = { version = "2.0.0", features = ["serde", "rand_core"] }
2323
flume = "0.11"
24-
iroh-bytes = { version = "0.8.0", path = "../iroh-bytes" }
25-
iroh-metrics = { version = "0.8.0", path = "../iroh-metrics", optional = true }
24+
iroh-bytes = { version = "0.9.0", path = "../iroh-bytes" }
25+
iroh-metrics = { version = "0.9.0", path = "../iroh-metrics", optional = true }
2626
once_cell = "1.18.0"
2727
postcard = { version = "1", default-features = false, features = ["alloc", "use-std", "experimental-derive"] }
2828
rand = "0.8.5"
@@ -42,7 +42,7 @@ redb = { version = "1.0.5", optional = true }
4242
ouroboros = { version = "0.18", optional = true }
4343

4444
# net
45-
iroh-net = { version = "0.8.0", optional = true, path = "../iroh-net" }
45+
iroh-net = { version = "0.9.0", optional = true, path = "../iroh-net" }
4646
tokio-util = { version = "0.7", optional = true, features = ["codec", "io-util", "io"] }
4747
tokio-stream = { version = "0.1", optional = true, features = ["sync"]}
4848
quinn = { version = "0.10", optional = true }

iroh-test/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "iroh-test"
3-
version = "0.8.0"
3+
version = "0.9.0"
44
edition = "2021"
55
readme = "README.md"
66
description = "Internal utilities to support testing of iroh."

iroh/Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "iroh"
3-
version = "0.8.0"
3+
version = "0.9.0"
44
edition = "2021"
55
readme = "README.md"
66
description = "Bytes. Distributed."
@@ -25,14 +25,14 @@ flume = "0.11"
2525
futures = "0.3.25"
2626
genawaiter = { version = "0.99", default-features = false, features = ["futures03"] }
2727
hex = { version = "0.4.3" }
28-
iroh-bytes = { version = "0.8.0", path = "../iroh-bytes" }
28+
iroh-bytes = { version = "0.9.0", path = "../iroh-bytes" }
2929
iroh-io = { version = "0.3.0", features = ["stats"] }
30-
iroh-metrics = { version = "0.8.0", path = "../iroh-metrics", optional = true }
31-
iroh-net = { version = "0.8.0", path = "../iroh-net" }
30+
iroh-metrics = { version = "0.9.0", path = "../iroh-metrics", optional = true }
31+
iroh-net = { version = "0.9.0", path = "../iroh-net" }
3232
num_cpus = { version = "1.15.0" }
3333
portable-atomic = "1"
34-
iroh-sync = { version = "0.8.0", path = "../iroh-sync" }
35-
iroh-gossip = { version = "0.8.0", path = "../iroh-gossip" }
34+
iroh-sync = { version = "0.9.0", path = "../iroh-sync" }
35+
iroh-gossip = { version = "0.9.0", path = "../iroh-gossip" }
3636
once_cell = "1.18.0"
3737
parking_lot = "0.12.1"
3838
postcard = { version = "1", default-features = false, features = ["alloc", "use-std", "experimental-derive"] }

0 commit comments

Comments
 (0)