Skip to content

Commit 0090eee

Browse files
chore: Release
1 parent 45fa784 commit 0090eee

File tree

8 files changed

+25
-25
lines changed

8 files changed

+25
-25
lines changed

Cargo.lock

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

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.6.0"
3+
version = "0.7.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.6.0"
3+
version = "0.7.0"
44
edition = "2021"
55
readme = "README.md"
66
description = "gossip messages over broadcast trees"
@@ -25,11 +25,11 @@ rand = { version = "0.8.5", features = ["std_rng"] }
2525
rand_core = "0.6.4"
2626
serde = { version = "1.0.164", features = ["derive"] }
2727
tracing = "0.1.37"
28-
iroh-metrics = { path = "../iroh-metrics", version = "0.6.0" }
28+
iroh-metrics = { path = "../iroh-metrics", version = "0.7.0" }
2929

3030
# net dependencies (optional)
3131
futures = { version = "0.3.25", optional = true }
32-
iroh-net = { version = "0.6.0", path = "../iroh-net", optional = true }
32+
iroh-net = { version = "0.7.0", path = "../iroh-net", optional = true }
3333
quinn = { version = "0.10", optional = true }
3434
tokio = { version = "1", optional = true, features = ["io-util", "sync", "rt", "macros", "net", "fs"] }
3535
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.6.0"
3+
version = "0.7.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.6.0"
3+
version = "0.7.0"
44
edition = "2021"
55
readme = "README.md"
66
description = "networking support for iroh"
@@ -78,7 +78,7 @@ toml = { version = "0.7.3", optional = true }
7878
tracing-subscriber = { version = "0.3", features = ["env-filter"], optional = true }
7979

8080
# metrics
81-
iroh-metrics = { version = "0.6.0", path = "../iroh-metrics", default-features = false }
81+
iroh-metrics = { version = "0.7.0", path = "../iroh-metrics", default-features = false }
8282

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

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.6.0"
3+
version = "0.7.0"
44
edition = "2021"
55
readme = "README.md"
66
description = "Iroh sync"
@@ -19,8 +19,8 @@ data-encoding = "2.4.0"
1919
derive_more = { version = "1.0.0-beta.1", features = ["debug", "deref", "display", "from", "try_into", "into", "as_ref"] }
2020
ed25519-dalek = { version = "2.0.0", features = ["serde", "rand_core"] }
2121
flume = "0.10"
22-
iroh-bytes = { version = "0.6.0", path = "../iroh-bytes" }
23-
iroh-metrics = { version = "0.6.0", path = "../iroh-metrics", optional = true }
22+
iroh-bytes = { version = "0.7.0", path = "../iroh-bytes" }
23+
iroh-metrics = { version = "0.7.0", path = "../iroh-metrics", optional = true }
2424
once_cell = "1.18.0"
2525
postcard = { version = "1", default-features = false, features = ["alloc", "use-std", "experimental-derive"] }
2626
rand = "0.8.5"
@@ -38,7 +38,7 @@ redb = { version = "1.0.5", optional = true }
3838
ouroboros = { version = "0.17", optional = true }
3939

4040
# net
41-
iroh-net = { version = "0.6.0", optional = true, path = "../iroh-net" }
41+
iroh-net = { version = "0.7.0", optional = true, path = "../iroh-net" }
4242
tokio = { version = "1", optional = true, features = ["io-util", "sync"] }
4343
tokio-util = { version = "0.7", optional = true, features = ["codec", "io-util", "io"] }
4444
tokio-stream = { version = "0.1", optional = true, features = ["sync"]}

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.6.0"
3+
version = "0.7.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.6.0"
3+
version = "0.7.0"
44
edition = "2021"
55
readme = "README.md"
66
description = "Bytes. Distributed."
@@ -22,15 +22,15 @@ flume = "0.10.14"
2222
futures = "0.3.25"
2323
genawaiter = { version = "0.99", default-features = false, features = ["futures03"] }
2424
hex = { version = "0.4.3" }
25-
iroh-bytes = { version = "0.6.0", path = "../iroh-bytes" }
25+
iroh-bytes = { version = "0.7.0", path = "../iroh-bytes" }
2626
iroh-io = { version = "0.3.0", features = ["stats"] }
27-
iroh-metrics = { version = "0.6.0", path = "../iroh-metrics", optional = true }
28-
iroh-net = { version = "0.6.0", path = "../iroh-net" }
27+
iroh-metrics = { version = "0.7.0", path = "../iroh-metrics", optional = true }
28+
iroh-net = { version = "0.7.0", path = "../iroh-net" }
2929
itertools = "0.11.0"
3030
num_cpus = { version = "1.15.0" }
3131
portable-atomic = "1"
32-
iroh-sync = { version = "0.6.0", path = "../iroh-sync" }
33-
iroh-gossip = { version = "0.6.0", path = "../iroh-gossip" }
32+
iroh-sync = { version = "0.7.0", path = "../iroh-sync" }
33+
iroh-gossip = { version = "0.7.0", path = "../iroh-gossip" }
3434
once_cell = "1.18.0"
3535
parking_lot = "0.12.1"
3636
postcard = { version = "1", default-features = false, features = ["alloc", "use-std", "experimental-derive"] }

0 commit comments

Comments
 (0)