Skip to content

Commit 76aab35

Browse files
committed
prepare for v0.23.0 releases
1 parent a521894 commit 76aab35

File tree

8 files changed

+21
-8
lines changed

8 files changed

+21
-8
lines changed

capnp-futures/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## v0.23.0
2+
- Follow v0.23.0 release of other capnp crates.
3+
14
## v0.22.0
25
- Follow v0.22.0 release of other capnp crates.
36

capnp-futures/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "capnp-futures"
3-
version = "0.23.0-alpha"
3+
version = "0.23.0"
44
authors = [ "David Renshaw <[email protected]>" ]
55
license = "MIT"
66

@@ -30,7 +30,7 @@ default-features = false
3030
features = ["executor"]
3131

3232
[dev-dependencies]
33-
capnp = { version = "0.23.0-alpha", path = "../capnp", features = ["quickcheck"] }
33+
capnp = { version = "0.23.0", path = "../capnp", features = ["quickcheck"] }
3434
quickcheck = "1"
3535

3636
[lints]

capnp-rpc/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## v0.23.0
2+
- Update `local::Client` for new `async fn` method signatures.
3+
- Add `new_client_from_rc()`.
4+
15
## v0.22.0
26
- Update for new `async fn` method support.
37

capnp-rpc/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22

33
name = "capnp-rpc"
4-
version = "0.23.0-alpha"
4+
version = "0.23.0"
55
authors = [ "David Renshaw <[email protected]>" ]
66
license = "MIT"
77
description = "implementation of the Cap'n Proto remote procedure call protocol"
@@ -19,8 +19,8 @@ default-features = false
1919
features = ["std"]
2020

2121
[dependencies]
22-
capnp-futures = { version = "0.23.0-alpha", path = "../capnp-futures" }
23-
capnp = {version = "0.23.0-alpha", path = "../capnp"}
22+
capnp-futures = { version = "0.23.0", path = "../capnp-futures" }
23+
capnp = {version = "0.23.0", path = "../capnp"}
2424

2525
#[lints]
2626
#workspace = true

capnp/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## v0.23.0
2+
- Update `capability::FromServer` trait for new `async fn` method signatures.
3+
14
## v0.22.0
25
- Update `capability::Server` trait for new `async fn` support.
36
- Update optional embedded-io dependency from 0.6.1 to 0.7.1.

capnp/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22

33
name = "capnp"
4-
version = "0.23.0-alpha"
4+
version = "0.23.0"
55
authors = [ "David Renshaw <[email protected]>" ]
66
license = "MIT"
77
description = "runtime library for Cap'n Proto data encoding"

capnpc/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## v0.23.0
2+
- Update generated code of `Server` trait methods to take `self` as `Rc<Self>`.
3+
14
## v0.22.0
25
- Update generated code of `Server` traits to support `async fn` methods.
36
What previously was a `&mut self` parameter is now `&self`. Therefore

capnpc/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22

33
name = "capnpc"
4-
version = "0.23.0-alpha"
4+
version = "0.23.0"
55
authors = [ "David Renshaw <[email protected]>" ]
66
license = "MIT"
77
description = "Cap'n Proto code generation"
@@ -25,7 +25,7 @@ path = "src/capnpc-rust-bootstrap.rs"
2525

2626

2727
[dependencies.capnp]
28-
version = "0.23.0-alpha"
28+
version = "0.23.0"
2929
path = "../capnp"
3030

3131
[lints]

0 commit comments

Comments
 (0)