Skip to content

Commit 8e2c999

Browse files
committed
prepare for 0.16.0 release
1 parent a235fb3 commit 8e2c999

File tree

8 files changed

+26
-9
lines changed

8 files changed

+26
-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.16.0
2+
- Follow v0.16.0 release of other capnp crates.
3+
14
## v0.15.1
25
- Fill in unimiplemented len() method of write_queue::Sender.
36
- Add is_empty() method to write_queue::Sender.

capnp-futures/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "capnp-futures"
3-
version = "0.15.1"
3+
version = "0.16.0"
44
authors = [ "David Renshaw <drenshaw@gmail.com>" ]
55
license = "MIT"
66

@@ -12,7 +12,7 @@ edition = "2021"
1212
keywords = ["async"]
1313

1414
[dependencies]
15-
capnp = { version = "0.15.0-alpha", path = "../capnp" }
15+
capnp = { version = "0.16.0", path = "../capnp" }
1616

1717
[dependencies.futures]
1818
version = "0.3.0"
@@ -25,5 +25,5 @@ default-features = false
2525
features = ["executor"]
2626

2727
[dev-dependencies]
28-
capnp = { version = "0.15.0", path = "../capnp", features = ["quickcheck"] }
28+
capnp = { version = "0.16.0", path = "../capnp", features = ["quickcheck"] }
2929
quickcheck = "1"

capnp-rpc/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## v0.16.0
2+
- Add reconnect API.
3+
14
## v0.15.1
25
- Remove some `unimplemented!()` panics.
36
- Lots of style and formatting fixes that should have no effect.

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.15.1"
4+
version = "0.16.0"
55
authors = [ "David Renshaw <dwrenshaw@sandstorm.io>" ]
66
license = "MIT"
77
description = "implementation of the Cap'n Proto remote procedure call protocol"
@@ -24,5 +24,5 @@ default-features = false
2424
features = ["std"]
2525

2626
[dependencies]
27-
capnp-futures = { version = "0.15.0", path = "../capnp-futures" }
28-
capnp = {version = "0.15.0", path = "../capnp"}
27+
capnp-futures = { version = "0.16.0", path = "../capnp-futures" }
28+
capnp = {version = "0.16.0", path = "../capnp"}

capnp/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
## v0.16.0
2+
- Remove deprecated `HasTypeId::type_id()` method.
3+
- Remove deprecated `MessageSize::plus_eq` method.
4+
- Remove `RefCell` from builder arena. Should result in minor performance boost.
5+
- Mark `Allocator::deallocate_segment` as `unsafe`.
6+
- Remove `ToU16` and `FromU16` traits in favor of `core::convert` traits.
7+
- Remove `FromStructBuilder` and `FromStructReader` traits in favor of `core::convert` traits.
8+
19
## v0.15.3
210
- Deprecate `HasTypeId::type_id()` in favor of `HasTypeId::TYPE_ID`.
311

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.15.3"
4+
version = "0.16.0"
55
authors = [ "David Renshaw <dwrenshaw@gmail.com>" ]
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.16.0
2+
- Update code generation for removal of `To16`, `FromU16`, `FromStructReader`, `FromStructBuilder`.
3+
14
### v0.15.2
25
- Apply clippy lifetime elision suggestion in set_pointer_builder() in generated code.
36

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.15.2"
4+
version = "0.16.0"
55
authors = [ "David Renshaw <dwrenshaw@gmail.com>" ]
66
license = "MIT"
77
description = "Cap'n Proto code generation"
@@ -24,7 +24,7 @@ name = "capnpc-rust"
2424
path = "src/capnpc-rust.rs"
2525

2626
[dependencies.capnp]
27-
version = "0.15.0"
27+
version = "0.16.0"
2828
path = "../capnp"
2929

3030
# Don't include "std" feature, so that dependent crates can include a build-time

0 commit comments

Comments
 (0)