Skip to content

Commit f54ea4c

Browse files
committed
bump versions to 0.17
1 parent b257452 commit f54ea4c

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

capnp-futures/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "capnp-futures"
3-
version = "0.16.0"
3+
version = "0.17.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.16.0", path = "../capnp" }
15+
capnp = { version = "0.17.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.16.0", path = "../capnp", features = ["quickcheck"] }
28+
capnp = { version = "0.17.0", path = "../capnp", features = ["quickcheck"] }
2929
quickcheck = "1"

capnp-rpc/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22

33
name = "capnp-rpc"
4-
version = "0.16.2"
4+
version = "0.17.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.16.0", path = "../capnp-futures" }
23-
capnp = {version = "0.16.0", path = "../capnp"}
22+
capnp-futures = { version = "0.17.0", path = "../capnp-futures" }
23+
capnp = {version = "0.17.0", path = "../capnp"}

capnp/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22

33
name = "capnp"
4-
version = "0.16.1"
4+
version = "0.17.0"
55
authors = [ "David Renshaw <dwrenshaw@gmail.com>" ]
66
license = "MIT"
77
description = "runtime library for Cap'n Proto data encoding"

capnpc/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22

33
name = "capnpc"
4-
version = "0.16.5"
4+
version = "0.17.0"
55
authors = [ "David Renshaw <dwrenshaw@gmail.com>" ]
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.16.0"
28+
version = "0.17.0"
2929
path = "../capnp"
3030

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

capnpc/src/lib.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,10 @@
3131
//!
3232
//! ```ignore
3333
//! [dependencies]
34-
//! capnp = "0.16" # Note this is a different library than capnp*c*
34+
//! capnp = "0.17" # Note this is a different library than capnp*c*
3535
//!
3636
//! [build-dependencies]
37-
//! capnpc = "0.16"
37+
//! capnpc = "0.17"
3838
//! ```
3939
//!
4040
//! In your lib.rs:

0 commit comments

Comments
 (0)