Skip to content

Commit 26405a4

Browse files
chore: Release
1 parent abdbf22 commit 26405a4

File tree

13 files changed

+54
-44
lines changed

13 files changed

+54
-44
lines changed

CHANGELOG.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,13 @@
22

33
All notable changes to iroh will be documented in this file.
44

5-
## [0.16.0](https://github.com/n0-computer/iroh/compare/v0.15.0..0.16.0) - 2024-05-13
5+
## [0.16.2](https://github.com/n0-computer/iroh/compare/v0.16.0..0.16.2) - 2024-05-13
6+
7+
### 🐛 Bug Fixes
8+
9+
- *(iroh)* Make `client::docs::ImportProgress` public ([#2288](https://github.com/n0-computer/iroh/issues/2288)) - ([abdbf22](https://github.com/n0-computer/iroh/commit/abdbf2229950fe471d452f995a995f2a0c4e7b4f))
10+
11+
## [0.16.0](https://github.com/n0-computer/iroh/compare/v0.15.0..v0.16.0) - 2024-05-13
612

713
### ⛰️ Features
814

@@ -33,6 +39,10 @@ All notable changes to iroh will be documented in this file.
3339
- *(iroh-net)* Fix relay's codec proptesting ([#2283](https://github.com/n0-computer/iroh/issues/2283)) - ([5343cea](https://github.com/n0-computer/iroh/commit/5343cea0e00741fb5a6c4c014a600c30a9f99fb6))
3440
- Disable flaky tests on windowns again ([#2267](https://github.com/n0-computer/iroh/issues/2267)) - ([6cc12d8](https://github.com/n0-computer/iroh/commit/6cc12d856101aaed64dd11c5c12f346ab43223d8))
3541

42+
### ⚙️ Miscellaneous Tasks
43+
44+
- Release - ([531829d](https://github.com/n0-computer/iroh/commit/531829de3597c6977ecd4ddfb6ca52929603f46d))
45+
3646
## [0.15.0](https://github.com/n0-computer/iroh/compare/v0.14.0..v0.15.0) - 2024-04-29
3747

3848
### ⛰️ Features

Cargo.lock

Lines changed: 11 additions & 11 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.16.0"
3+
version = "0.16.2"
44
edition = "2021"
55
readme = "README.md"
66
description = "base type and utilities for Iroh"

iroh-blobs/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-blobs"
3-
version = "0.16.0"
3+
version = "0.16.2"
44
edition = "2021"
55
readme = "README.md"
66
description = "blob and collection transfer support for iroh"
@@ -27,10 +27,10 @@ futures-lite = "2.3"
2727
genawaiter = { version = "0.99.1", features = ["futures03"] }
2828
hashlink = { version = "0.9.0", optional = true }
2929
hex = "0.4.3"
30-
iroh-base = { version = "0.16.0", features = ["redb"], path = "../iroh-base" }
30+
iroh-base = { version = "0.16.2", features = ["redb"], path = "../iroh-base" }
3131
iroh-io = { version = "0.6.0", features = ["stats"] }
32-
iroh-metrics = { version = "0.16.0", path = "../iroh-metrics", optional = true }
33-
iroh-net = { version = "0.16.0", path = "../iroh-net" }
32+
iroh-metrics = { version = "0.16.2", path = "../iroh-metrics", optional = true }
33+
iroh-net = { version = "0.16.2", path = "../iroh-net" }
3434
num_cpus = "1.15.0"
3535
parking_lot = { version = "0.12.1", optional = true }
3636
postcard = { version = "1", default-features = false, features = ["alloc", "use-std", "experimental-derive"] }

iroh-cli/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-cli"
3-
version = "0.16.0"
3+
version = "0.16.2"
44
edition = "2021"
55
readme = "README.md"
66
description = "Bytes. Distributed."
@@ -39,8 +39,8 @@ futures-lite = "2.3"
3939
hex = "0.4.3"
4040
human-time = "0.1.6"
4141
indicatif = { version = "0.17", features = ["tokio"] }
42-
iroh = { version = "0.16.0", path = "../iroh", features = ["metrics"] }
43-
iroh-metrics = { version = "0.16.0", path = "../iroh-metrics" }
42+
iroh = { version = "0.16.2", path = "../iroh", features = ["metrics"] }
43+
iroh-metrics = { version = "0.16.2", path = "../iroh-metrics" }
4444
parking_lot = "0.12.1"
4545
pkarr = { version = "1.1.5", default-features = false }
4646
portable-atomic = "1"

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.16.0"
3+
version = "0.16.2"
44
edition = "2021"
55
description = "A pkarr relay and DNS server"
66
license = "MIT OR Apache-2.0"
@@ -24,7 +24,7 @@ governor = "0.6.3"
2424
hickory-proto = "0.24.0"
2525
hickory-server = { version = "0.24.0", features = ["dns-over-rustls"] }
2626
http = "1.0.0"
27-
iroh-metrics = { version = "0.16.0", path = "../iroh-metrics" }
27+
iroh-metrics = { version = "0.16.2", path = "../iroh-metrics" }
2828
lru = "0.12.3"
2929
parking_lot = "0.12.1"
3030
pkarr = { version = "1.1.4", features = [ "async", "relay", "dht"], default-features = false }
@@ -52,7 +52,7 @@ z32 = "1.1.1"
5252

5353
[dev-dependencies]
5454
hickory-resolver = "0.24.0"
55-
iroh-net = { version = "0.16.0", path = "../iroh-net" }
55+
iroh-net = { version = "0.16.2", path = "../iroh-net" }
5656
iroh-test = { path = "../iroh-test" }
5757
mainline = "<1.5.0"
5858

iroh-docs/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-docs"
3-
version = "0.16.0"
3+
version = "0.16.2"
44
edition = "2021"
55
readme = "README.md"
66
description = "Iroh sync"
@@ -20,8 +20,8 @@ blake3 = { package = "iroh-blake3", version = "1.4.5"}
2020
derive_more = { version = "1.0.0-beta.6", features = ["debug", "deref", "display", "from", "try_into", "into", "as_ref"] }
2121
ed25519-dalek = { version = "2.0.0", features = ["serde", "rand_core"] }
2222
flume = "0.11"
23-
iroh-base = { version = "0.16.0", path = "../iroh-base" }
24-
iroh-metrics = { version = "0.16.0", path = "../iroh-metrics", optional = true }
23+
iroh-base = { version = "0.16.2", path = "../iroh-base" }
24+
iroh-metrics = { version = "0.16.2", path = "../iroh-metrics", optional = true }
2525
num_enum = "0.7"
2626
postcard = { version = "1", default-features = false, features = ["alloc", "use-std", "experimental-derive"] }
2727
rand = "0.8.5"
@@ -40,7 +40,7 @@ redb_v1 = { package = "redb", version = "1.5.1" }
4040
tempfile = { version = "3.4" }
4141

4242
# net
43-
iroh-net = { version = "0.16.0", optional = true, path = "../iroh-net" }
43+
iroh-net = { version = "0.16.2", optional = true, path = "../iroh-net" }
4444
tokio-util = { version = "0.7", optional = true, features = ["codec", "io-util", "io"] }
4545
tokio-stream = { version = "0.1", optional = true, features = ["sync"]}
4646
futures-util = { version = "0.3.25", optional = true }

iroh-gossip/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-gossip"
3-
version = "0.16.0"
3+
version = "0.16.2"
44
edition = "2021"
55
readme = "README.md"
66
description = "gossip messages over broadcast trees"
@@ -27,12 +27,12 @@ rand = { version = "0.8.5", features = ["std_rng"] }
2727
rand_core = "0.6.4"
2828
serde = { version = "1.0.164", features = ["derive"] }
2929
tracing = "0.1"
30-
iroh-metrics = { version = "0.16.0", path = "../iroh-metrics" }
31-
iroh-base = { version = "0.16.0", path = "../iroh-base" }
30+
iroh-metrics = { version = "0.16.2", path = "../iroh-metrics" }
31+
iroh-base = { version = "0.16.2", path = "../iroh-base" }
3232

3333
# net dependencies (optional)
3434
futures-lite = { version = "2.3", optional = true }
35-
iroh-net = { path = "../iroh-net", version = "0.16.0", optional = true, default-features = false }
35+
iroh-net = { path = "../iroh-net", version = "0.16.2", optional = true, default-features = false }
3636
tokio = { version = "1", optional = true, features = ["io-util", "sync", "rt", "macros", "net", "fs"] }
3737
tokio-util = { version = "0.7.8", optional = true, features = ["codec"] }
3838
genawaiter = { version = "0.99.1", default-features = false, features = ["futures03"] }

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.16.0"
3+
version = "0.16.2"
44
edition = "2021"
55
readme = "README.md"
66
description = "metrics for iroh"

iroh-net/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-net"
3-
version = "0.16.0"
3+
version = "0.16.2"
44
edition = "2021"
55
readme = "README.md"
66
description = "networking support for iroh"
@@ -40,7 +40,7 @@ http-body-util = "0.1.0"
4040
hyper = { version = "1", features = ["server", "client", "http1"] }
4141
hyper-util = "0.1.1"
4242
igd-next = { version = "0.14.3", features = ["aio_tokio"] }
43-
iroh-base = { version = "0.16.0", path = "../iroh-base", features = ["key"] }
43+
iroh-base = { version = "0.16.2", path = "../iroh-base", features = ["key"] }
4444
libc = "0.2.139"
4545
num_enum = "0.7"
4646
once_cell = "1.18.0"
@@ -85,7 +85,7 @@ toml = { version = "0.8", optional = true }
8585
tracing-subscriber = { version = "0.3", features = ["env-filter"], optional = true }
8686

8787
# metrics
88-
iroh-metrics = { version = "0.16.0", path = "../iroh-metrics", default-features = false }
88+
iroh-metrics = { version = "0.16.2", path = "../iroh-metrics", default-features = false }
8989
strum = { version = "0.26.2", features = ["derive"] }
9090

9191
[target.'cfg(any(target_os = "linux", target_os = "android"))'.dependencies]

0 commit comments

Comments
 (0)