Skip to content

Commit f487216

Browse files
committed
release v0.2.3
1 parent c450470 commit f487216

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

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.2.2"
3+
version = "0.2.3"
44
edition = "2021"
55
authors = ["Rüdiger Klaehn <[email protected]>", "n0 team"]
66
keywords = ["api", "protocol", "network", "rpc"]
@@ -48,7 +48,7 @@ quinn = { workspace = true, optional = true, features = ["runtime-tokio"] }
4848
[dev-dependencies]
4949
tracing-subscriber = { workspace = true, features = ["fmt"] }
5050
# used in the derive example. This must not be a main crate dep or else it will be circular!
51-
irpc-derive = { version = "0.2.2", path = "./irpc-derive" }
51+
irpc-derive = { version = "0.2.3", path = "./irpc-derive" }
5252
# just convenient for the enum definitions, in the manual example
5353
derive_more = { version = "2", features = ["from"] }
5454
# we need full for example main etc.

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.2.2"
3+
version = "0.2.3"
44
edition = "2021"
55
authors = ["Rüdiger Klaehn <[email protected]>"]
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.2.2"
3+
version = "0.2.3"
44
edition = "2021"
55
authors = ["Rüdiger Klaehn <[email protected]>", "n0 team"]
66
keywords = ["api", "protocol", "network", "rpc"]
@@ -17,12 +17,12 @@ tracing = { workspace = true }
1717
serde = { workspace = true }
1818
postcard = { workspace = true, features = ["alloc", "use-std"] }
1919
n0-future = { workspace = true }
20-
irpc = { version = "0.2.2", path = ".." }
20+
irpc = { version = "0.2.3", path = ".." }
2121

2222
[target.'cfg(all(target_family = "wasm", target_os = "unknown"))'.dependencies]
2323
getrandom = { version = "0.3", features = ["wasm_js"] }
2424

2525
[dev-dependencies]
2626
n0-future = { workspace = true }
2727
tracing-subscriber = { workspace = true, features = ["fmt"] }
28-
irpc-derive = { version = "0.2.2", path = "../irpc-derive" }
28+
irpc-derive = { version = "0.2.3", path = "../irpc-derive" }

0 commit comments

Comments
 (0)