Skip to content

Commit f629161

Browse files
committed
prepare for 0.18.0 release
1 parent c09a43e commit f629161

File tree

7 files changed

+22
-9
lines changed

7 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.18.0
2+
- Follow v0.18.0 release of other capnp crates.
3+
14
## v0.17.0
25
- Follow v0.17.0 release of other capnp crates.
36

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.18.0-alpha"
3+
version = "0.18.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.18.0-alpha", path = "../capnp" }
15+
capnp = { version = "0.18.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.18.0-alpha", path = "../capnp", features = ["quickcheck"] }
28+
capnp = { version = "0.18.0", path = "../capnp", features = ["quickcheck"] }
2929
quickcheck = "1"

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

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

capnp/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
## v0.18.0
2+
- Add optional (default-enabled) `alloc` feature to allow no-alloc mode.
3+
- Lazier UTF-8 validation.
4+
- Add missing #[inline] attributes for f32 and f64.
5+
- Add optional `embedded-io` feature.
6+
- Make SliceSegments a special case of BufferSegments.
7+
18
## v0.17.2
29
- Fix indexing bug in `schema::FieldSubset`.
310

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.18.0-alpha"
4+
version = "0.18.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.18.0
2+
- Update for lazier utf-8 validation.
3+
14
## v0.17.2
25
- Add the `$Rust.option` annotation for declaring fields to be optional.
36
- Add `CompilerCommand::crate_provides()`, allowing cross-crate imports.

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.18.0-alpha"
4+
version = "0.18.0"
55
authors = [ "David Renshaw <dwrenshaw@gmail.com>" ]
66
license = "MIT"
77
description = "Cap'n Proto code generation"
@@ -25,5 +25,5 @@ path = "src/capnpc-rust-bootstrap.rs"
2525

2626

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

0 commit comments

Comments
 (0)