Skip to content

Commit

Permalink
prepare for 0.20.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
dwrensha committed Sep 17, 2024
1 parent 9c17dc0 commit 8f6e61c
Show file tree
Hide file tree
Showing 8 changed files with 25 additions and 9 deletions.
4 changes: 4 additions & 0 deletions capnp-futures/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## v0.20.0
- write_queue objects should be Send now, when appropriate.
- Follow v0.20.0 release of other capnp crates.

## v0.19.1
- Fix bug in `write_queue::len()`.

Expand Down
6 changes: 3 additions & 3 deletions capnp-futures/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "capnp-futures"
version = "0.20.0-alpha"
version = "0.20.0"
authors = [ "David Renshaw <[email protected]>" ]
license = "MIT"

Expand All @@ -12,7 +12,7 @@ edition = "2021"
keywords = ["async"]

[dependencies]
capnp = { version = "0.20.0-alpha", path = "../capnp" }
capnp = { version = "0.20.0", path = "../capnp" }

[dependencies.futures]
version = "0.3.0"
Expand All @@ -25,7 +25,7 @@ default-features = false
features = ["executor"]

[dev-dependencies]
capnp = { version = "0.20.0-alpha", path = "../capnp", features = ["quickcheck"] }
capnp = { version = "0.20.0", path = "../capnp", features = ["quickcheck"] }
quickcheck = "1"

[lints]
Expand Down
3 changes: 3 additions & 0 deletions capnp-rpc/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## v0.20.0
- Add support for streaming RPC methods.

## v0.19.5
- Add support for `Request::set_pipeline()`.

Expand Down
6 changes: 3 additions & 3 deletions capnp-rpc/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]

name = "capnp-rpc"
version = "0.20.0-alpha"
version = "0.20.0"
authors = [ "David Renshaw <[email protected]>" ]
license = "MIT"
description = "implementation of the Cap'n Proto remote procedure call protocol"
Expand All @@ -19,8 +19,8 @@ default-features = false
features = ["std"]

[dependencies]
capnp-futures = { version = "0.20.0-alpha", path = "../capnp-futures" }
capnp = {version = "0.20.0-alpha", path = "../capnp"}
capnp-futures = { version = "0.20.0", path = "../capnp-futures" }
capnp = {version = "0.20.0", path = "../capnp"}

#[lints]
#workspace = true
Expand Down
6 changes: 6 additions & 0 deletions capnp/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## v0.20.0
- Add trait hook support for streaming RPC methods.
- Add `unsafe impl Sync` to BuilderArenaImpl.
- Move `unsafe impl Send` from message::Builder to BuilderArenaImpl.
- Fix misspelled error variant: UnexepectedFarPointer -> UnexpectedFarPointer.

## v0.19.7
- Add `Results::set_pipeline()` and `ResultsHook::set_pipeline()`.

Expand Down
2 changes: 1 addition & 1 deletion capnp/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]

name = "capnp"
version = "0.20.0-alpha"
version = "0.20.0"
authors = [ "David Renshaw <[email protected]>" ]
license = "MIT"
description = "runtime library for Cap'n Proto data encoding"
Expand Down
3 changes: 3 additions & 0 deletions capnpc/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## v0.20.0
- Add support for `stream` keyword.

## v0.19.0
- Include new members_by_name field of RawStructSchema.
- Generalize text, primitive_list, and enum_list setters using impl SetterInput.
Expand Down
4 changes: 2 additions & 2 deletions capnpc/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]

name = "capnpc"
version = "0.20.0-alpha"
version = "0.20.0"
authors = [ "David Renshaw <[email protected]>" ]
license = "MIT"
description = "Cap'n Proto code generation"
Expand All @@ -25,7 +25,7 @@ path = "src/capnpc-rust-bootstrap.rs"


[dependencies.capnp]
version = "0.20.0-alpha"
version = "0.20.0"
path = "../capnp"

[lints]
Expand Down

0 comments on commit 8f6e61c

Please sign in to comment.