Skip to content

Commit 80a40c0

Browse files
chore: Release
1 parent 92d9864 commit 80a40c0

File tree

9 files changed

+135
-39
lines changed

9 files changed

+135
-39
lines changed

CHANGELOG.md

Lines changed: 101 additions & 5 deletions
Large diffs are not rendered by default.

Cargo.lock

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

iroh-base/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-base"
3-
version = "0.28.0"
3+
version = "0.29.0"
44
edition = "2021"
55
readme = "README.md"
66
description = "base type and utilities for Iroh"

iroh-dns-server/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-dns-server"
3-
version = "0.28.0"
3+
version = "0.29.0"
44
edition = "2021"
55
description = "A pkarr relay and DNS server"
66
license = "MIT OR Apache-2.0"
@@ -60,8 +60,8 @@ z32 = "1.1.1"
6060

6161
[dev-dependencies]
6262
hickory-resolver = "=0.25.0-alpha.2"
63-
iroh = { version = "0.28.0", path = "../iroh" }
64-
iroh-test = { version = "0.28.0", path = "../iroh-test" }
63+
iroh = { version = "0.29.0", path = "../iroh" }
64+
iroh-test = { version = "0.29.0", path = "../iroh-test" }
6565
pkarr = { version = "2.2.0", features = ["rand"] }
6666

6767
[package.metadata.docs.rs]

iroh-net-report/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "iroh-net-report"
3-
version = "0.28.0"
3+
version = "0.29.0"
44
edition = "2021"
55
readme = "README.md"
66
description = "detailed reporting on network conditions"
@@ -22,9 +22,9 @@ derive_more = { version = "1.0.0", features = ["display"] }
2222
futures-buffered = "0.2.8"
2323
futures-lite = "2.3"
2424
hickory-resolver = "=0.25.0-alpha.2"
25-
iroh-base = { version = "0.28.0", path = "../iroh-base", default-features = false, features = ["relay"] }
25+
iroh-base = { version = "0.29.0", path = "../iroh-base", default-features = false, features = ["relay"] }
2626
iroh-metrics = { version = "0.29.0", default-features = false, optional = true }
27-
iroh-relay = { version = "0.28", path = "../iroh-relay" }
27+
iroh-relay = { version = "0.29", path = "../iroh-relay" }
2828
netwatch = { version = "0.2.0" }
2929
portmapper = { version = "0.2.0" }
3030
rand = "0.8"
@@ -38,8 +38,8 @@ tracing = "0.1"
3838
url = { version = "2.4" }
3939

4040
[dev-dependencies]
41-
iroh-relay = { version = "0.28", path = "../iroh-relay", features = ["test-utils", "server"] }
42-
iroh-test = { version = "0.28.0", path = "../iroh-test" }
41+
iroh-relay = { version = "0.29", path = "../iroh-relay", features = ["test-utils", "server"] }
42+
iroh-test = { version = "0.29.0", path = "../iroh-test" }
4343
once_cell = "1.18.0"
4444
pretty_assertions = "1.4"
4545
testresult = "0.4.0"

iroh-relay/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-relay"
3-
version = "0.28.0"
3+
version = "0.29.0"
44
edition = "2021"
55
readme = "README.md"
66
description = "Iroh's relay server and client"
@@ -38,7 +38,7 @@ http = "1"
3838
http-body-util = "0.1.0"
3939
hyper = { version = "1", features = ["server", "client", "http1"] }
4040
hyper-util = "0.1.1"
41-
iroh-base = { version = "0.28.0", path = "../iroh-base", features = ["key"] }
41+
iroh-base = { version = "0.29.0", path = "../iroh-base", features = ["key"] }
4242
iroh-metrics = { version = "0.29.0", default-features = false }
4343
libc = "0.2.139"
4444
num_enum = "0.7"
@@ -112,7 +112,7 @@ tokio = { version = "1", features = [
112112
"test-util",
113113
] }
114114
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
115-
iroh-test = { version = "0.28.0", path = "../iroh-test" }
115+
iroh-test = { version = "0.29.0", path = "../iroh-test" }
116116
serde_json = "1"
117117

118118
[features]

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.28.0"
3+
version = "0.29.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.28.1"
3+
version = "0.29.0"
44
edition = "2021"
55
readme = "README.md"
66
description = "p2p quic connections dialed by public key"
@@ -44,8 +44,8 @@ http-body-util = "0.1.0"
4444
hyper = { version = "1", features = ["server", "client", "http1"] }
4545
hyper-util = "0.1.1"
4646
igd-next = { version = "0.15.1", features = ["aio_tokio"] }
47-
iroh-base = { version = "0.28.0", features = ["key"], path = "../iroh-base" }
48-
iroh-relay = { version = "0.28", path = "../iroh-relay" }
47+
iroh-base = { version = "0.29.0", features = ["key"], path = "../iroh-base" }
48+
iroh-relay = { version = "0.29", path = "../iroh-relay" }
4949
libc = "0.2.139"
5050
netdev = "0.31.0"
5151
netwatch = { version = "0.2.0" }
@@ -107,7 +107,7 @@ webpki = { package = "rustls-webpki", version = "0.102" }
107107
webpki-roots = "0.26"
108108
x509-parser = "0.16"
109109
z32 = "1.0.3"
110-
net-report = { package = "iroh-net-report", path = "../iroh-net-report", version = "0.28" }
110+
net-report = { package = "iroh-net-report", path = "../iroh-net-report", version = "0.29" }
111111

112112
# metrics
113113
iroh-metrics = { version = "0.29", default-features = false }
@@ -166,10 +166,10 @@ tokio = { version = "1", features = [
166166
"test-util",
167167
] }
168168
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
169-
iroh-test = { version = "0.28.0", path = "../iroh-test" }
169+
iroh-test = { version = "0.29.0", path = "../iroh-test" }
170170
serde_json = "1"
171171
testresult = "0.4.0"
172-
iroh-relay = { version = "0.28", path = "../iroh-relay", features = ["test-utils", "server"] }
172+
iroh-relay = { version = "0.29", path = "../iroh-relay", features = ["test-utils", "server"] }
173173

174174
[[bench]]
175175
name = "key"

iroh/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.28.0"
3+
version = "0.29.0"
44
edition = "2021"
55
license = "MIT OR Apache-2.0"
66
publish = false

0 commit comments

Comments
 (0)