Skip to content

Commit 28241af

Browse files
authored
Merge pull request #147 from Berrysoft/release/0.9.0-beta
2 parents 7274ee5 + 80cfadb commit 28241af

File tree

12 files changed

+22
-21
lines changed

12 files changed

+22
-21
lines changed

Cargo.toml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -25,17 +25,17 @@ license = "MIT"
2525
repository = "https://github.com/compio-rs/compio"
2626

2727
[workspace.dependencies]
28-
compio-buf = { path = "./compio-buf", version = "0.2.0" }
29-
compio-driver = { path = "./compio-driver", version = "0.2.0", default-features = false }
30-
compio-runtime = { path = "./compio-runtime", version = "0.2.0" }
31-
compio-macros = { path = "./compio-macros", version = "0.1.1" }
32-
compio-fs = { path = "./compio-fs", version = "0.2.0" }
33-
compio-io = { path = "./compio-io", version = "0.1.0" }
34-
compio-net = { path = "./compio-net", version = "0.2.0" }
35-
compio-signal = { path = "./compio-signal", version = "0.1.1" }
36-
compio-dispatcher = { path = "./compio-dispatcher", version = "0.1.0" }
28+
compio-buf = { path = "./compio-buf", version = "0.2.0-beta.1" }
29+
compio-driver = { path = "./compio-driver", version = "0.2.0-beta.1", default-features = false }
30+
compio-runtime = { path = "./compio-runtime", version = "0.2.0-beta.1" }
31+
compio-macros = { path = "./compio-macros", version = "0.1.1-beta.1" }
32+
compio-fs = { path = "./compio-fs", version = "0.2.0-beta.1" }
33+
compio-io = { path = "./compio-io", version = "0.1.0-beta.1" }
34+
compio-net = { path = "./compio-net", version = "0.2.0-beta.1" }
35+
compio-signal = { path = "./compio-signal", version = "0.1.1-beta.1" }
36+
compio-dispatcher = { path = "./compio-dispatcher", version = "0.1.0-beta.1" }
3737
compio-http = { path = "./compio-http", version = "0.1.0" }
38-
compio-log = { path = "./compio-log", version = "0.1.0" }
38+
compio-log = { path = "./compio-log", version = "0.1.0-beta.1" }
3939
compio-tls = { path = "./compio-tls", version = "0.1.0" }
4040

4141

compio-buf/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "compio-buf"
3-
version = "0.2.0"
3+
version = "0.2.0-beta.1"
44
description = "buffer trait for completion based async IO"
55
categories = ["asynchronous"]
66
keywords = ["async"]

compio-dispatcher/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "compio-dispatcher"
3-
version = "0.1.0"
3+
version = "0.1.0-beta.1"
44
description = "Multithreading dispatcher for compio"
55
categories = ["asynchronous"]
66
keywords = ["async", "runtime"]

compio-driver/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "compio-driver"
3-
version = "0.2.0"
3+
version = "0.2.0-beta.1"
44
description = "low-level driver for compio"
55
categories = ["asynchronous"]
66
keywords = ["async", "iocp", "io-uring"]

compio-fs/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "compio-fs"
3-
version = "0.2.0"
3+
version = "0.2.0-beta.1"
44
description = "Filesystem IO for compio"
55
categories = ["asynchronous", "filesystem"]
66
keywords = ["async", "fs"]

compio-io/Cargo.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
[package]
22
name = "compio-io"
3-
version = "0.1.0"
3+
version = "0.1.0-beta.1"
4+
description = "IO traits for completion based async IO"
45
categories = ["asynchronous"]
56
keywords = ["async", "io"]
67
edition = { workspace = true }

compio-log/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "compio-log"
3-
version = "0.1.0"
3+
version = "0.1.0-beta.1"
44
description = "log of compio"
55
categories = ["asynchronous"]
66
edition = { workspace = true }

compio-macros/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "compio-macros"
3-
version = "0.1.1"
3+
version = "0.1.1-beta.1"
44
description = "proc macro of compio"
55
categories = ["asynchronous"]
66
edition = { workspace = true }

compio-net/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "compio-net"
3-
version = "0.2.0"
3+
version = "0.2.0-beta.1"
44
description = "Networking IO for compio"
55
categories = ["asynchronous", "network-programming"]
66
keywords = ["async", "net"]

compio-runtime/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "compio-runtime"
3-
version = "0.2.0"
3+
version = "0.2.0-beta.1"
44
description = "high-level runtime for compio"
55
categories = ["asynchronous"]
66
keywords = ["async", "runtime"]

0 commit comments

Comments
 (0)