Skip to content

Commit

Permalink
Merge pull request #243 from George-Miao/feat/release-0.10.0
Browse files Browse the repository at this point in the history
Release version 0.10.0
  • Loading branch information
George-Miao authored Apr 25, 2024
2 parents b463817 + 291a3b0 commit c307b71
Show file tree
Hide file tree
Showing 12 changed files with 20 additions and 20 deletions.
18 changes: 9 additions & 9 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,17 +23,17 @@ license = "MIT"
repository = "https://github.com/compio-rs/compio"

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

cfg-if = "1.0.0"
criterion = "0.5.1"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ They don't support Windows.
Add `compio` as dependency:

```
compio = { version = "0.9.0", features = ["macros"] }
compio = { version = "0.10.0", features = ["macros"] }
```

Then we can use high level APIs to perform filesystem & net IO.
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.2.0"
version = "0.3.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.1.0"
version = "0.2.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.2.0"
version = "0.3.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.2.0"
version = "0.3.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.1.0"
version = "0.2.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.2.0"
version = "0.3.0"
description = "Networking IO for compio"
categories = ["asynchronous", "network-programming"]
keywords = ["async", "net"]
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.2.0"
version = "0.3.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.1.1"
version = "0.2.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.1.0"
version = "0.2.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.9.0"
version = "0.10.0"
description = "Completion based async runtime"
categories = ["asynchronous", "filesystem", "network-programming"]
keywords = ["async", "fs", "iocp", "io-uring", "net"]
Expand Down

0 comments on commit c307b71

Please sign in to comment.