Skip to content

Commit

Permalink
prepare for 0.15.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
dwrensha committed Nov 3, 2022
1 parent 588aba0 commit 76ff980
Show file tree
Hide file tree
Showing 8 changed files with 25 additions and 8 deletions.
3 changes: 3 additions & 0 deletions capnp-futures/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## v0.15.0
- Follow v0.15.0 release of other capnp crates.

## v0.14.2
- Add serialize_packed module.

Expand Down
4 changes: 2 additions & 2 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.15.0-alpha"
version = "0.15.0"
authors = [ "David Renshaw <[email protected]>" ]
license = "MIT"

Expand All @@ -25,5 +25,5 @@ default-features = false
features = ["executor"]

[dev-dependencies]
capnp = { version = "0.15.0-alpha", path = "../capnp", features = ["quickcheck"] }
capnp = { version = "0.15.0", path = "../capnp", features = ["quickcheck"] }
quickcheck = "1"
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.15.0
- Add CapabilityServerSet.

## v0.14.2
- Fix potential panic in broken pipelined capabilities.

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.15.0-alpha"
version = "0.15.0"
authors = [ "David Renshaw <[email protected]>" ]
license = "MIT"
description = "implementation of the Cap'n Proto remote procedure call protocol"
Expand All @@ -24,5 +24,5 @@ default-features = false
features = ["std"]

[dependencies]
capnp-futures = { version = "0.15.0-alpha", path = "../capnp-futures" }
capnp = {version = "0.15.0-alpha", path = "../capnp"}
capnp-futures = { version = "0.15.0", path = "../capnp-futures" }
capnp = {version = "0.15.0", path = "../capnp"}
7 changes: 7 additions & 0 deletions capnp/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## v0.15.0
- Move HasStructSize::struct_size() into a constant HasStructSize::STRUCT_SIZE.
- Move HasTypeId::type_id() into a constant HasTypeId::TYPE_ID.
- Updated minimum supported rustc versino to 1.65.0.
- Use generic associated types in Owned and OwnedStruct.
- Add capability::get_resolved_cap().

## v0.14.10
- Handle case when `alloc::alloc_zeroed()` returns null.

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.15.0-alpha"
version = "0.15.0"
authors = [ "David Renshaw <[email protected]>" ]
license = "MIT"
description = "runtime library for Cap'n Proto data encoding"
Expand Down
4 changes: 4 additions & 0 deletions capnpc/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
### v0.15.0
- Support trait changes in capnp::traits.
- Remove deprecate function.

### v0.14.9
- Fix Clippy warnings in generated code.

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.15.0-alpha"
version = "0.15.0"
authors = [ "David Renshaw <[email protected]>" ]
license = "MIT"
description = "Cap'n Proto code generation"
Expand All @@ -24,7 +24,7 @@ name = "capnpc-rust"
path = "src/capnpc-rust.rs"

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

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

0 comments on commit 76ff980

Please sign in to comment.