Skip to content
This repository was archived by the owner on Oct 30, 2019. It is now read-only.

Commit 6edd9c9

Browse files
authored
Prepare 0.3.0-alpha.7 (#92)
1 parent edddaa4 commit 6edd9c9

File tree

5 files changed

+12
-12
lines changed

5 files changed

+12
-12
lines changed

Cargo.toml

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "runtime"
33
description = "Empowering everyone to build asynchronous software."
4-
version = "0.3.0-alpha.6"
4+
version = "0.3.0-alpha.7"
55
license = "MIT OR Apache-2.0"
66
readme = "README.md"
77
repository = "https://github.com/rustasync/runtime"
@@ -18,9 +18,9 @@ native = ["runtime-attributes/native", "runtime-native"]
1818

1919
[dependencies]
2020
futures-preview = "0.3.0-alpha.18"
21-
runtime-attributes = { path = "runtime-attributes", version = "0.3.0-alpha.5", default-features = false }
22-
runtime-raw = { path = "runtime-raw", version = "0.3.0-alpha.4" }
23-
runtime-native = { path = "runtime-native", version = "0.3.0-alpha.4", optional = true }
21+
runtime-attributes = { path = "runtime-attributes", version = "0.3.0-alpha.6", default-features = false }
22+
runtime-raw = { path = "runtime-raw", version = "0.3.0-alpha.5" }
23+
runtime-native = { path = "runtime-native", version = "0.3.0-alpha.6", optional = true }
2424

2525
[dev-dependencies]
2626
failure = "0.1.5"
@@ -29,7 +29,7 @@ futures-preview = { version = "0.3.0-alpha.18", features = ["nightly", "async-aw
2929
juliex = "0.3.0-alpha.6"
3030
mio = "0.6.16"
3131
rand = "0.7.0"
32-
runtime-tokio = { path = "runtime-tokio", version = "0.3.0-alpha.4" }
32+
runtime-tokio = { path = "runtime-tokio", version = "0.3.0-alpha.5" }
3333
tokio = "0.1.19"
3434

3535
[profile.bench]

runtime-attributes/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "runtime-attributes"
33
description = "Proc Macro attributes for the Runtime crate."
4-
version = "0.3.0-alpha.5"
4+
version = "0.3.0-alpha.6"
55
license = "MIT OR Apache-2.0"
66
readme = "README.md"
77
repository = "https://github.com/rustasync/runtime"
@@ -25,4 +25,4 @@ proc-macro2 = { version = "1.0.0", features = ["nightly"] }
2525
quote = "1.0.0"
2626

2727
[dev-dependencies]
28-
runtime-raw = { path = "../runtime-raw", version = "0.3.0-alpha.4" }
28+
runtime-raw = { path = "../runtime-raw", version = "0.3.0-alpha.5" }

runtime-native/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "runtime-native"
33
description = "A cross-platform asynchronous runtime"
4-
version = "0.3.0-alpha.4"
4+
version = "0.3.0-alpha.6"
55
license = "MIT OR Apache-2.0"
66
readme = "README.md"
77
repository = "https://github.com/rustasync/runtime"
@@ -14,7 +14,7 @@ edition = "2018"
1414

1515
[dependencies]
1616
futures-preview = { version = "0.3.0-alpha.18", features = ["compat"] }
17-
runtime-raw = { path = "../runtime-raw", version = "0.3.0-alpha.4" }
17+
runtime-raw = { path = "../runtime-raw", version = "0.3.0-alpha.5" }
1818

1919
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
2020
async-datagram = "3.0.0"

runtime-raw/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "runtime-raw"
33
description = "Traits to implement custom Runtimes."
4-
version = "0.3.0-alpha.4"
4+
version = "0.3.0-alpha.5"
55
license = "MIT OR Apache-2.0"
66
readme = "README.md"
77
repository = "https://github.com/rustasync/runtime"

runtime-tokio/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "runtime-tokio"
33
description = "A Tokio-based asynchronous runtime"
4-
version = "0.3.0-alpha.5"
4+
version = "0.3.0-alpha.6"
55
license = "MIT OR Apache-2.0"
66
readme = "README.md"
77
repository = "https://github.com/rustasync/runtime"
@@ -17,5 +17,5 @@ futures-preview = { version = "0.3.0-alpha.18", features = ["compat", "io-compat
1717
futures01 = { package = "futures", version = "0.1" }
1818
lazy_static = "1.3.0"
1919
mio = "0.6.16"
20-
runtime-raw = { path = "../runtime-raw", version = "0.3.0-alpha.4" }
20+
runtime-raw = { path = "../runtime-raw", version = "0.3.0-alpha.5" }
2121
tokio = "0.1.19"

0 commit comments

Comments
 (0)