Skip to content

Commit 8677fd8

Browse files
author
“ramfox”
committed
chore: Release
1 parent 5f54493 commit 8677fd8

File tree

7 files changed

+21
-14
lines changed

7 files changed

+21
-14
lines changed

CHANGELOG.md

Lines changed: 8 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.93.0](https://github.com/n0-computer/iroh/compare/v0.92.0..0.93.0) - 2025-10-09
5+
## [0.93.1](https://github.com/n0-computer/iroh/compare/v0.93.0..0.93.1) - 2025-10-09
6+
7+
### 📚 Documentation
8+
9+
- Fix docs.rs docs generation ([#3514](https://github.com/n0-computer/iroh/issues/3514)) - ([5f54493](https://github.com/n0-computer/iroh/commit/5f54493cc90fc12209c2ea942bb2594929827f82))
10+
11+
## [0.93.0](https://github.com/n0-computer/iroh/compare/v0.92.0..v0.93.0) - 2025-10-09
612

713
### ⛰️ Features
814

@@ -40,6 +46,7 @@ All notable changes to iroh will be documented in this file.
4046

4147
- Bump some spans up to warn, to ensure they are logged ([#3466](https://github.com/n0-computer/iroh/issues/3466)) - ([2e42085](https://github.com/n0-computer/iroh/commit/2e4208579a33f4ed9c61573728e3a486582b0c41))
4248
- Enable dependabot for crates and docker ([#3497](https://github.com/n0-computer/iroh/issues/3497)) - ([968a70b](https://github.com/n0-computer/iroh/commit/968a70bc2f7e3bf608647793acbfa80e6b960658))
49+
- Release - ([7a8b97c](https://github.com/n0-computer/iroh/commit/7a8b97cbe5748ae7deed798d3b4dc7aae9dd4bac))
4350

4451
## [0.92.0](https://github.com/n0-computer/iroh/compare/v0.91.2..v0.92.0) - 2025-09-18
4552

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.0"
3+
version = "0.93.1"
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.0"
3+
version = "0.93.1"
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.0"
3+
version = "0.93.1"
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.0", path = "../iroh-base", default-features = false, features = ["key", "relay"] }
34+
iroh-base = { version = "0.93.1", path = "../iroh-base", default-features = false, features = ["key", "relay"] }
3535
iroh-metrics = { version = "0.36", default-features = false }
3636
n0-future = "0.1.2"
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.0"
3+
version = "0.93.1"
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.0", default-features = false, features = ["key", "relay"], path = "../iroh-base" }
40+
iroh-base = { version = "0.93.1", 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.1.2"
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.0.0", features = ['std'] } # pinned version to avoid bumping msrv to 1.81
153-
iroh-base = { version = "0.93.0", default-features = false, features = ["key", "relay", "ticket"], path = "../iroh-base" }
153+
iroh-base = { version = "0.93.1", 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.0"
3+
version = "0.93.1"
44
edition = "2024"
55
license = "MIT OR Apache-2.0"
66
publish = false

0 commit comments

Comments
 (0)