Skip to content

Commit a51ae02

Browse files
committed
bump versions to 0.13.0-alpha
1 parent 450d440 commit a51ae02

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

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

1414
[dependencies]
15-
capnp = { version = "0.12.0", path = "../capnp" }
15+
capnp = { version = "0.13.0-alpha", path = "../capnp" }
1616
futures = "0.3.0"
1717

1818
[dev-dependencies]
19-
capnp = { version = "0.12.0", path = "../capnp", features = ["quickcheck"] }
19+
capnp = { version = "0.13.0-alpha", path = "../capnp", features = ["quickcheck"] }
2020
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.12.3"
4+
version = "0.13.0-alpha"
55
authors = [ "David Renshaw <[email protected]>" ]
66
license = "MIT"
77
description = "implementation of the Cap'n Proto remote procedure call protocol"
@@ -20,5 +20,5 @@ path = "src/lib.rs"
2020

2121
[dependencies]
2222
futures = "0.3.0"
23-
capnp-futures = { version = "0.12.0", path = "../capnp-futures" }
24-
capnp = {version = "0.12.2", path = "../capnp"}
23+
capnp-futures = { version = "0.13.0-alpha", path = "../capnp-futures" }
24+
capnp = {version = "0.13.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.12.3"
4+
version = "0.13.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.12.4"
4+
version = "0.13.0-alpha"
55
authors = [ "David Renshaw <[email protected]>" ]
66
license = "MIT"
77
description = "Cap'n Proto code generation"
@@ -24,5 +24,5 @@ name = "capnpc-rust"
2424
path = "src/capnpc-rust.rs"
2525

2626
[dependencies]
27-
capnp = { version = "0.12.2", path = "../capnp" }
27+
capnp = { version = "0.13.0-alpha", path = "../capnp" }
2828

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.12"
37+
//! capnpc = "0.13"
3838
//! ```
3939
//!
4040
//! In your build.rs:

0 commit comments

Comments
 (0)