Skip to content

Commit 4223551

Browse files
committed
feat: prepare for 0.16 release
1 parent 0bcb64d commit 4223551

File tree

13 files changed

+24
-24
lines changed

13 files changed

+24
-24
lines changed

Cargo.toml

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

2727
[workspace.dependencies]
28-
compio-buf = { path = "./compio-buf", version = "0.6.0" }
29-
compio-driver = { path = "./compio-driver", version = "0.8.0", default-features = false }
30-
compio-runtime = { path = "./compio-runtime", version = "0.8.0" }
28+
compio-buf = { path = "./compio-buf", version = "0.7.0" }
29+
compio-driver = { path = "./compio-driver", version = "0.9.0", default-features = false }
30+
compio-runtime = { path = "./compio-runtime", version = "0.9.0" }
3131
compio-macros = { path = "./compio-macros", version = "0.1.2" }
32-
compio-fs = { path = "./compio-fs", version = "0.8.0" }
33-
compio-io = { path = "./compio-io", version = "0.7.0" }
34-
compio-net = { path = "./compio-net", version = "0.8.0" }
35-
compio-signal = { path = "./compio-signal", version = "0.6.0" }
36-
compio-dispatcher = { path = "./compio-dispatcher", version = "0.7.0" }
32+
compio-fs = { path = "./compio-fs", version = "0.9.0" }
33+
compio-io = { path = "./compio-io", version = "0.8.0" }
34+
compio-net = { path = "./compio-net", version = "0.9.0" }
35+
compio-signal = { path = "./compio-signal", version = "0.7.0" }
36+
compio-dispatcher = { path = "./compio-dispatcher", version = "0.8.0" }
3737
compio-log = { path = "./compio-log", version = "0.1.0" }
38-
compio-tls = { path = "./compio-tls", version = "0.6.0", default-features = false }
39-
compio-process = { path = "./compio-process", version = "0.5.0" }
40-
compio-quic = { path = "./compio-quic", version = "0.4.0", default-features = false }
38+
compio-tls = { path = "./compio-tls", version = "0.7.0", default-features = false }
39+
compio-process = { path = "./compio-process", version = "0.6.0" }
40+
compio-quic = { path = "./compio-quic", version = "0.5.0", default-features = false }
4141

4242
bytes = "1.7.1"
4343
flume = "0.11.0"
@@ -62,7 +62,7 @@ tempfile = "3.8.1"
6262
tokio = "1.33.0"
6363
tracing-subscriber = "0.3.18"
6464
widestring = "1.0.2"
65-
windows-sys = "0.60.2"
65+
windows-sys = "0.61.0"
6666
thiserror = "2.0.3"
6767

6868
[profile.bench]

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.6.0"
3+
version = "0.7.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.7.0"
3+
version = "0.8.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.8.1"
3+
version = "0.9.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.8.0"
3+
version = "0.9.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.7.0"
3+
version = "0.8.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.8.0"
3+
version = "0.9.0"
44
description = "Networking IO for compio"
55
categories = ["asynchronous", "network-programming"]
66
keywords = ["async", "net"]

compio-process/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-process"
3-
version = "0.5.0"
3+
version = "0.6.0"
44
description = "Processes for compio"
55
categories = ["asynchronous"]
66
keywords = ["async", "process"]

compio-quic/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-quic"
3-
version = "0.4.0"
3+
version = "0.5.0"
44
description = "QUIC for compio"
55
categories = ["asynchronous", "network-programming"]
66
keywords = ["async", "net", "quic"]

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

0 commit comments

Comments
 (0)