Skip to content

Commit f40b6dc

Browse files
committed
bump versions to 0.14.0-alpha
1 parent bcf3f73 commit f40b6dc

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

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.13.2"
3+
version = "0.14.0-alpha"
44
authors = [ "David Renshaw <[email protected]>" ]
55
license = "MIT"
66

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

1414
[dependencies]
15-
capnp = { version = "0.13.0", path = "../capnp" }
15+
capnp = { version = "0.14.0-alpha", 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.13.0", path = "../capnp", features = ["quickcheck"] }
28+
capnp = { version = "0.14.0-alpha", path = "../capnp", features = ["quickcheck"] }
2929
quickcheck = "0.9"

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.13.1"
4+
version = "0.14.0-alpha"
55
authors = [ "David Renshaw <[email protected]>" ]
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.13.0", path = "../capnp-futures" }
28-
capnp = {version = "0.13.0", path = "../capnp"}
27+
capnp-futures = { version = "0.14.0-alpha", path = "../capnp-futures" }
28+
capnp = {version = "0.14.0-alpha", path = "../capnp"}

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.13.6"
4+
version = "0.14.0-alpha"
55
authors = [ "David Renshaw <[email protected]>" ]
66
license = "MIT"
77
description = "runtime library for Cap'n Proto data encoding"

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.13.1"
4+
version = "0.14.0-alpha"
55
authors = [ "David Renshaw <[email protected]>" ]
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.13.0"
27+
version = "0.14.0-alpha"
2828
path = "../capnp"
2929

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

capnpc/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
//! build = "build.rs"
3535
//!
3636
//! [build-dependencies]
37-
//! capnpc = "0.13"
37+
//! capnpc = "0.14"
3838
//! ```
3939
//!
4040
//! In your build.rs:

0 commit comments

Comments
 (0)