Skip to content

Commit

Permalink
feat: prepare for 0.12.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
Berrysoft committed Sep 16, 2024
1 parent 3eba645 commit c361477
Show file tree
Hide file tree
Showing 12 changed files with 21 additions and 21 deletions.
20 changes: 10 additions & 10 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,18 +25,18 @@ license = "MIT"
repository = "https://github.com/compio-rs/compio"

[workspace.dependencies]
compio-buf = { path = "./compio-buf", version = "0.4.0" }
compio-driver = { path = "./compio-driver", version = "0.4.0", default-features = false }
compio-runtime = { path = "./compio-runtime", version = "0.4.0" }
compio-buf = { path = "./compio-buf", version = "0.5.0" }
compio-driver = { path = "./compio-driver", version = "0.5.0", default-features = false }
compio-runtime = { path = "./compio-runtime", version = "0.5.0" }
compio-macros = { path = "./compio-macros", version = "0.1.2" }
compio-fs = { path = "./compio-fs", version = "0.4.0" }
compio-io = { path = "./compio-io", version = "0.3.0" }
compio-net = { path = "./compio-net", version = "0.4.0" }
compio-signal = { path = "./compio-signal", version = "0.2.1" }
compio-dispatcher = { path = "./compio-dispatcher", version = "0.3.0" }
compio-fs = { path = "./compio-fs", version = "0.5.0" }
compio-io = { path = "./compio-io", version = "0.4.0" }
compio-net = { path = "./compio-net", version = "0.5.0" }
compio-signal = { path = "./compio-signal", version = "0.3.0" }
compio-dispatcher = { path = "./compio-dispatcher", version = "0.4.0" }
compio-log = { path = "./compio-log", version = "0.1.0" }
compio-tls = { path = "./compio-tls", version = "0.2.0", default-features = false }
compio-process = { path = "./compio-process", version = "0.1.0" }
compio-tls = { path = "./compio-tls", version = "0.3.0", default-features = false }
compio-process = { path = "./compio-process", version = "0.2.0" }
compio-quic = { path = "./compio-quic", version = "0.1.0" }

bytes = "1.7.1"
Expand Down
2 changes: 1 addition & 1 deletion compio-buf/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "compio-buf"
version = "0.4.0"
version = "0.5.0"
description = "Buffer trait for completion based async IO"
categories = ["asynchronous"]
keywords = ["async"]
Expand Down
2 changes: 1 addition & 1 deletion compio-dispatcher/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "compio-dispatcher"
version = "0.3.0"
version = "0.4.0"
description = "Multithreading dispatcher for compio"
categories = ["asynchronous"]
keywords = ["async", "runtime"]
Expand Down
2 changes: 1 addition & 1 deletion compio-driver/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "compio-driver"
version = "0.4.0"
version = "0.5.0"
description = "Low-level driver for compio"
categories = ["asynchronous"]
keywords = ["async", "iocp", "io-uring"]
Expand Down
2 changes: 1 addition & 1 deletion compio-fs/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "compio-fs"
version = "0.4.0"
version = "0.5.0"
description = "Filesystem IO for compio"
categories = ["asynchronous", "filesystem"]
keywords = ["async", "fs"]
Expand Down
2 changes: 1 addition & 1 deletion compio-io/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "compio-io"
version = "0.3.0"
version = "0.4.0"
description = "IO traits for completion based async IO"
categories = ["asynchronous"]
keywords = ["async", "io"]
Expand Down
2 changes: 1 addition & 1 deletion compio-net/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "compio-net"
version = "0.4.0"
version = "0.5.0"
description = "Networking IO for compio"
categories = ["asynchronous", "network-programming"]
keywords = ["async", "net"]
Expand Down
2 changes: 1 addition & 1 deletion compio-process/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "compio-process"
version = "0.1.0"
version = "0.2.0"
description = "Processes for compio"
categories = ["asynchronous"]
keywords = ["async", "process"]
Expand Down
2 changes: 1 addition & 1 deletion compio-runtime/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "compio-runtime"
version = "0.4.0"
version = "0.5.0"
description = "High-level runtime for compio"
categories = ["asynchronous"]
keywords = ["async", "runtime"]
Expand Down
2 changes: 1 addition & 1 deletion compio-signal/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "compio-signal"
version = "0.2.1"
version = "0.3.0"
description = "Signal handling for compio"
categories = ["asynchronous"]
keywords = ["async", "signal"]
Expand Down
2 changes: 1 addition & 1 deletion compio-tls/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "compio-tls"
version = "0.2.0"
version = "0.3.0"
description = "TLS adaptor with compio"
categories = ["asynchronous", "network-programming"]
keywords = ["async", "net", "tls"]
Expand Down
2 changes: 1 addition & 1 deletion compio/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "compio"
version = "0.11.0"
version = "0.12.0"
description = "Completion based async runtime"
categories = ["asynchronous", "filesystem", "network-programming"]
keywords = ["async", "fs", "iocp", "io-uring", "net"]
Expand Down

0 comments on commit c361477

Please sign in to comment.