Skip to content

Commit b39b325

Browse files
author
“ramfox”
committed
chore: Release
1 parent 430ff3a commit b39b325

File tree

7 files changed

+24
-14
lines changed

7 files changed

+24
-14
lines changed

CHANGELOG.md

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

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

5-
## [0.93.1](https://github.com/n0-computer/iroh/compare/v0.93.0..0.93.1) - 2025-10-09
5+
## [0.93.2](https://github.com/n0-computer/iroh/compare/v0.93.1..0.93.2) - 2025-10-13
6+
7+
### 🐛 Bug Fixes
8+
9+
- *(iroh)* Ensure initial addresses are published via discovery ([#3525](https://github.com/n0-computer/iroh/issues/3525)) - ([ca85faa](https://github.com/n0-computer/iroh/commit/ca85faac23d8509030a956000e56ae25f5610fcd))
10+
11+
## [0.93.1](https://github.com/n0-computer/iroh/compare/v0.93.0..v0.93.1) - 2025-10-09
612

713
### 📚 Documentation
814

915
- Fix docs.rs docs generation ([#3514](https://github.com/n0-computer/iroh/issues/3514)) - ([5f54493](https://github.com/n0-computer/iroh/commit/5f54493cc90fc12209c2ea942bb2594929827f82))
1016

17+
### ⚙️ Miscellaneous Tasks
18+
19+
- Release - ([8677fd8](https://github.com/n0-computer/iroh/commit/8677fd8e899726bce46ef44f3216fe96770198f2))
20+
1121
## [0.93.0](https://github.com/n0-computer/iroh/compare/v0.92.0..v0.93.0) - 2025-10-09
1222

1323
### ⛰️ 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.93.1"
3+
version = "0.93.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.93.1"
3+
version = "0.93.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.93.1"
3+
version = "0.93.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.93.1", path = "../iroh-base", default-features = false, features = ["key", "relay"] }
34+
iroh-base = { version = "0.93.2", path = "../iroh-base", default-features = false, features = ["key", "relay"] }
3535
iroh-metrics = { version = "0.36", default-features = false }
3636
n0-future = "0.2.0"
3737
num_enum = "0.7"

iroh/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"
3-
version = "0.93.1"
3+
version = "0.93.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 = "3.0.0-pre.1", features = ["serde", "rand_core", "zeroize", "pkcs8", "pem"] }
3939
http = "1"
40-
iroh-base = { version = "0.93.1", default-features = false, features = ["key", "relay"], path = "../iroh-base" }
40+
iroh-base = { version = "0.93.2", default-features = false, features = ["key", "relay"], path = "../iroh-base" }
4141
iroh-relay = { version = "0.93", path = "../iroh-relay", default-features = false }
4242
n0-future = "0.2.0"
4343
n0-snafu = "0.2.2"
@@ -150,7 +150,7 @@ tracing-subscriber = { version = "0.3", features = [
150150
] }
151151
indicatif = { version = "0.18", features = ["tokio"] }
152152
parse-size = { version = "1.1.0", features = ['std'] }
153-
iroh-base = { version = "0.93.1", default-features = false, features = ["key", "relay", "ticket"], path = "../iroh-base" }
153+
iroh-base = { version = "0.93.2", default-features = false, features = ["key", "relay", "ticket"], path = "../iroh-base" }
154154

155155
# wasm-in-browser test/dev dependencies
156156
[target.'cfg(all(target_family = "wasm", target_os = "unknown"))'.dev-dependencies]

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

0 commit comments

Comments
 (0)