Skip to content

Commit c307b71

Browse files
authored
Merge pull request #243 from George-Miao/feat/release-0.10.0
Release version 0.10.0
2 parents b463817 + 291a3b0 commit c307b71

File tree

12 files changed

+20
-20
lines changed

12 files changed

+20
-20
lines changed

Cargo.toml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -23,17 +23,17 @@ license = "MIT"
2323
repository = "https://github.com/compio-rs/compio"
2424

2525
[workspace.dependencies]
26-
compio-buf = { path = "./compio-buf", version = "0.2.0" }
27-
compio-driver = { path = "./compio-driver", version = "0.2.0", default-features = false }
28-
compio-runtime = { path = "./compio-runtime", version = "0.2.0" }
26+
compio-buf = { path = "./compio-buf", version = "0.3.0" }
27+
compio-driver = { path = "./compio-driver", version = "0.3.0", default-features = false }
28+
compio-runtime = { path = "./compio-runtime", version = "0.3.0" }
2929
compio-macros = { path = "./compio-macros", version = "0.1.1" }
30-
compio-fs = { path = "./compio-fs", version = "0.2.0" }
31-
compio-io = { path = "./compio-io", version = "0.1.0" }
32-
compio-net = { path = "./compio-net", version = "0.2.0" }
33-
compio-signal = { path = "./compio-signal", version = "0.1.1" }
34-
compio-dispatcher = { path = "./compio-dispatcher", version = "0.1.0" }
30+
compio-fs = { path = "./compio-fs", version = "0.3.0" }
31+
compio-io = { path = "./compio-io", version = "0.2.0" }
32+
compio-net = { path = "./compio-net", version = "0.3.0" }
33+
compio-signal = { path = "./compio-signal", version = "0.2.0" }
34+
compio-dispatcher = { path = "./compio-dispatcher", version = "0.2.0" }
3535
compio-log = { path = "./compio-log", version = "0.1.0" }
36-
compio-tls = { path = "./compio-tls", version = "0.1.0", default-features = false }
36+
compio-tls = { path = "./compio-tls", version = "0.2.0", default-features = false }
3737

3838
cfg-if = "1.0.0"
3939
criterion = "0.5.1"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ They don't support Windows.
3030
Add `compio` as dependency:
3131

3232
```
33-
compio = { version = "0.9.0", features = ["macros"] }
33+
compio = { version = "0.10.0", features = ["macros"] }
3434
```
3535

3636
Then we can use high level APIs to perform filesystem & net IO.

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.3.0"
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.2.0"
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.3.0"
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.3.0"
44
description = "Filesystem IO for compio"
55
categories = ["asynchronous", "filesystem"]
66
keywords = ["async", "fs"]

compio-io/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-io"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
description = "IO traits for completion based async IO"
55
categories = ["asynchronous"]
66
keywords = ["async", "io"]

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.3.0"
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.3.0"
44
description = "High-level runtime for compio"
55
categories = ["asynchronous"]
66
keywords = ["async", "runtime"]

compio-signal/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-signal"
3-
version = "0.1.1"
3+
version = "0.2.0"
44
description = "Signal handling for compio"
55
categories = ["asynchronous"]
66
keywords = ["async", "signal"]

0 commit comments

Comments
 (0)