Skip to content

Commit 9c1058b

Browse files
committed
prepare for v0.24.0 release
1 parent e3aeec2 commit 9c1058b

File tree

8 files changed

+22
-9
lines changed

8 files changed

+22
-9
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.24.0
2+
- Follow v0.24.0 release of other capnp crates.
3+
14
## v0.23.1
25
- Fix capnp dependency to be capnp-v0.23.0 rather than capnp-v0.23.0-alpha.
36

capnp-futures/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-futures"
4-
version = "0.24.0-alpha"
4+
version = "0.24.0"
55
authors = [ "David Renshaw <[email protected]>" ]
66
license = "MIT"
77

@@ -13,7 +13,7 @@ edition = "2021"
1313
keywords = ["async"]
1414

1515
[dependencies]
16-
capnp = { version = "0.24.0-alpha", path = "../capnp" }
16+
capnp = { version = "0.24.0", path = "../capnp" }
1717

1818
[dependencies.futures-channel]
1919
version = "0.3.0"
@@ -31,7 +31,7 @@ default-features = false
3131
features = ["executor"]
3232

3333
[dev-dependencies]
34-
capnp = { version = "0.24.0-alpha", path = "../capnp", features = ["quickcheck"] }
34+
capnp = { version = "0.24.0", path = "../capnp", features = ["quickcheck"] }
3535
quickcheck = "1"
3636

3737
[lints]

capnp-rpc/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## v0.24.0
2+
- Follow v0.24.0 release of other capnp crates.
3+
14
## v0.23.0
25
- Update `local::Client` for new `async fn` method signatures.
36
- Add `new_client_from_rc()`.

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.24.0-alpha"
4+
version = "0.24.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.24.0-alpha", path = "../capnp-futures" }
23-
capnp = {version = "0.24.0-alpha", path = "../capnp"}
22+
capnp-futures = { version = "0.24.0", path = "../capnp-futures" }
23+
capnp = {version = "0.24.0", path = "../capnp"}
2424

2525
#[lints]
2626
#workspace = true

capnp/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## v0.24.0
2+
- Add unsafe const constructor of `constant::Reader` and prevent direction construction.
3+
- Add unsafe const constructor of `RawStructSchema` and prevent direction construction.
4+
15
## v0.23.2
26
- Add `#![allow(clippy::all)]` in `capnp::generated_code()`.
37

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.24.0-alpha"
4+
version = "0.24.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.24.0
2+
- Adjust generated code to used new constructors for constants and RawStructSchema.
3+
14
## v0.23.3
25
- Adjust generated dispatch code to properly disambiguate when an 'extends' interface method
36
conflicts with another method.

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.24.0-alpha"
4+
version = "0.24.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.24.0-alpha"
28+
version = "0.24.0"
2929
path = "../capnp"
3030

3131
[lints]

0 commit comments

Comments
 (0)