Skip to content

Commit f3379d0

Browse files
chore: Release
1 parent 67aadf1 commit f3379d0

5 files changed

Lines changed: 27 additions & 9 deletions

File tree

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,24 @@
22

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

5+
## [0.15.0](https://github.com/n0-computer/irpc/compare/v0.14.0..0.15.0) - 2026-05-08
6+
7+
### 🚜 Refactor
8+
9+
- Remove specialized 0rtt rpc calls ([#92](https://github.com/n0-computer/irpc/issues/92)) - ([1dd579d](https://github.com/n0-computer/irpc/commit/1dd579d92dd772c4a8fb39b5d9f68d0078666221))
10+
11+
### 📚 Documentation
12+
13+
- *(irpc-iroh)* Expand span_propagation example to work with Jaeger ([#100](https://github.com/n0-computer/irpc/issues/100)) - ([910d56e](https://github.com/n0-computer/irpc/commit/910d56e68e8aa601c42591c2f4f75f4499af4fe5))
14+
- Update license text to match other repos - ([d758de3](https://github.com/n0-computer/irpc/commit/d758de39b4f68873f8a131d3150ffd24f4f55a70))
15+
16+
### ⚙️ Miscellaneous Tasks
17+
18+
- Migrate to rust edition 2024, align formatting with iroh standards ([#90](https://github.com/n0-computer/irpc/issues/90)) - ([56dc5a3](https://github.com/n0-computer/irpc/commit/56dc5a33344d3a73e51fcc5149602dc632bee4c6))
19+
- Migrate to rust edition 2024, align formatting with iroh standards ([#90](https://github.com/n0-computer/irpc/issues/90)) - ([b109a95](https://github.com/n0-computer/irpc/commit/b109a9510ef20fc7c6590136e090693799063fba))
20+
- Update to noq 1.0-rc.0 and iroh 1.0-rc.0 ([#99](https://github.com/n0-computer/irpc/issues/99)) - ([b96a6d0](https://github.com/n0-computer/irpc/commit/b96a6d0abe689cc77b3b36885ca763a8a31ead51))
21+
- Setup changelog generation - ([67aadf1](https://github.com/n0-computer/irpc/commit/67aadf19015839d2b65f2f5082b232e03acd170c))
22+
523
## [0.14.0](https://github.com/n0-computer/irpc/compare/v0.13.0..v0.14.0) - 2026-04-20
624

725
### ⛰️ Features

Cargo.lock

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

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "irpc"
3-
version = "0.14.0"
3+
version = "0.15.0"
44
edition = "2024"
55
authors = ["Rüdiger Klaehn <rklaehn@protonmail.com>", "n0 team"]
66
keywords = ["api", "protocol", "network", "rpc"]
@@ -43,7 +43,7 @@ futures-buffered ={ version = "0.2.9", optional = true }
4343
n0-future = { workspace = true }
4444
futures-util = { workspace = true, optional = true }
4545
# for the derive reexport/feature
46-
irpc-derive = { version = "0.11.0", path = "./irpc-derive", optional = true }
46+
irpc-derive = { version = "0.15.0", path = "./irpc-derive", optional = true }
4747
# for remote span propagation when tracing-opentelemetry feature is enabled
4848
opentelemetry = { version = "0.31", optional = true }
4949
tracing-opentelemetry = { version = "0.32", optional = true }

irpc-derive/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "irpc-derive"
3-
version = "0.11.0"
3+
version = "0.15.0"
44
edition = "2024"
55
authors = ["Rüdiger Klaehn <rklaehn@protonmail.com>"]
66
keywords = ["api", "protocol", "network", "rpc", "macro"]

irpc-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 = "irpc-iroh"
3-
version = "0.14.0"
3+
version = "0.15.0"
44
edition = "2024"
55
authors = ["Rüdiger Klaehn <rklaehn@protonmail.com>", "n0 team"]
66
keywords = ["api", "protocol", "network", "rpc"]
@@ -20,7 +20,7 @@ serde = { workspace = true }
2020
postcard = { workspace = true, features = ["alloc", "use-std"] }
2121
n0-error = { workspace = true }
2222
n0-future = { workspace = true }
23-
irpc = { version = "0.14.0", path = ".." }
23+
irpc = { version = "0.15.0", path = ".." }
2424
iroh-base.workspace = true
2525

2626
[target.'cfg(all(target_family = "wasm", target_os = "unknown"))'.dependencies]
@@ -29,7 +29,7 @@ getrandom = { version = "0.3", features = ["wasm_js"] }
2929
[dev-dependencies]
3030
n0-future = { workspace = true }
3131
tracing-subscriber = { workspace = true, features = ["fmt"] }
32-
irpc-derive = { version = "0.11.0", path = "../irpc-derive" }
32+
irpc-derive = { version = "0.15.0", path = "../irpc-derive" }
3333
clap = { version = "4.5.41", features = ["derive"] }
3434
futures-util.workspace = true
3535
hex = "0.4.3"

0 commit comments

Comments
 (0)