Skip to content

Commit d9dbbe6

Browse files
author
“ramfox”
committed
chore: Release
1 parent 2308388 commit d9dbbe6

File tree

7 files changed

+28
-13
lines changed

7 files changed

+28
-13
lines changed

CHANGELOG.md

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

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

5-
## [0.91.1](https://github.com/n0-computer/iroh/compare/v0.91.0..0.91.1) - 2025-08-04
5+
## [0.91.2](https://github.com/n0-computer/iroh/compare/v0.91.1..0.91.2) - 2025-08-18
6+
7+
### ⛰️ Features
8+
9+
- *(iroh-base)* Derive Hash for NodeAddr ([#3428](https://github.com/n0-computer/iroh/issues/3428)) - ([2308388](https://github.com/n0-computer/iroh/commit/2308388da774ea0c796e68ef920c586230704dbe))
10+
11+
### 🐛 Bug Fixes
12+
13+
- *(iroh)* Fix very slow initial connection establishment ([#3434](https://github.com/n0-computer/iroh/issues/3434)) - ([59d1432](https://github.com/n0-computer/iroh/commit/59d1432a10e6c6414f355947aecd0d8927b72b6c))
14+
- *(iroh-relay)* Don't double-count connection accepts ([#3436](https://github.com/n0-computer/iroh/issues/3436)) - ([8c558a1](https://github.com/n0-computer/iroh/commit/8c558a1c2e6d53ca0a20b0c2a4d78efe3beab45a))
15+
16+
## [0.91.1](https://github.com/n0-computer/iroh/compare/v0.91.0..v0.91.1) - 2025-08-04
617

718
### 🐛 Bug Fixes
819

@@ -13,6 +24,10 @@ All notable changes to iroh will be documented in this file.
1324

1425
- Grammar nitpick ([#3383](https://github.com/n0-computer/iroh/issues/3383)) - ([026dffc](https://github.com/n0-computer/iroh/commit/026dffc6cc5229411599188bd7d6e24df7dae9d3))
1526

27+
### ⚙️ Miscellaneous Tasks
28+
29+
- Release - ([e30c788](https://github.com/n0-computer/iroh/commit/e30c788f968265bd9d181e5ca92d02eb61ef3d0d))
30+
1631
## [0.91.0](https://github.com/n0-computer/iroh/compare/v0.90.0..v0.91.0) - 2025-07-30
1732

1833
### ⛰️ Features

Cargo.lock

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

iroh-dns-server/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-dns-server"
3-
version = "0.91.1"
3+
version = "0.91.2"
44
edition = "2024"
55
description = "A pkarr relay and DNS server"
66
license = "MIT OR Apache-2.0"

iroh-relay/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-relay"
3-
version = "0.91.1"
3+
version = "0.91.2"
44
edition = "2024"
55
readme = "README.md"
66
description = "Iroh's relay server and client"
@@ -31,7 +31,7 @@ http = "1"
3131
http-body-util = "0.1.0"
3232
hyper = { version = "1", features = ["server", "client", "http1"] }
3333
hyper-util = "0.1.1"
34-
iroh-base = { version = "0.91.1", path = "../iroh-base", default-features = false, features = ["key", "relay"] }
34+
iroh-base = { version = "0.91.2", path = "../iroh-base", default-features = false, features = ["key", "relay"] }
3535
iroh-metrics = { version = "0.35", default-features = false }
3636
n0-future = "0.1.2"
3737
num_enum = "0.7"

iroh/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"
3-
version = "0.91.1"
3+
version = "0.91.2"
44
edition = "2024"
55
readme = "README.md"
66
description = "p2p quic connections dialed by public key"
@@ -37,7 +37,7 @@ derive_more = { version = "2.0.1", features = [
3737
] }
3838
ed25519-dalek = { version = "2.1.1", features = ["serde", "rand_core", "zeroize", "pkcs8", "pem"] }
3939
http = "1"
40-
iroh-base = { version = "0.91.1", default-features = false, features = ["key", "relay"], path = "../iroh-base" }
40+
iroh-base = { version = "0.91.2", default-features = false, features = ["key", "relay"], path = "../iroh-base" }
4141
iroh-relay = { version = "0.91", path = "../iroh-relay", default-features = false }
4242
n0-future = "0.1.2"
4343
n0-snafu = "0.2.1"

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-bench"
3-
version = "0.91.1"
3+
version = "0.91.2"
44
edition = "2024"
55
license = "MIT OR Apache-2.0"
66
publish = false

0 commit comments

Comments
 (0)