Skip to content

Commit fdb0217

Browse files
authored
Merge pull request #219 from Berrysoft/release/0.9.0
feat: prepare for 0.9.0 release
2 parents b63fc5c + 87c26ba commit fdb0217

File tree

16 files changed

+35
-30
lines changed

16 files changed

+35
-30
lines changed

Cargo.toml

Lines changed: 11 additions & 11 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-beta.1" }
27-
compio-driver = { path = "./compio-driver", version = "0.2.0-beta.3", default-features = false }
28-
compio-runtime = { path = "./compio-runtime", version = "0.2.0-beta.3" }
29-
compio-macros = { path = "./compio-macros", version = "0.1.1-beta.1" }
30-
compio-fs = { path = "./compio-fs", version = "0.2.0-beta.2" }
31-
compio-io = { path = "./compio-io", version = "0.1.0-beta.2" }
32-
compio-net = { path = "./compio-net", version = "0.2.0-beta.2" }
33-
compio-signal = { path = "./compio-signal", version = "0.1.1-beta.2" }
34-
compio-dispatcher = { path = "./compio-dispatcher", version = "0.1.0-beta.1" }
35-
compio-log = { path = "./compio-log", version = "0.1.0-beta.1" }
36-
compio-tls = { path = "./compio-tls", version = "0.1.0-beta.3", default-features = false }
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" }
29+
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" }
35+
compio-log = { path = "./compio-log", version = "0.1.0" }
36+
compio-tls = { path = "./compio-tls", version = "0.1.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
@@ -29,7 +29,7 @@ They don't support Windows.
2929
Add `compio` as dependency:
3030

3131
```
32-
compio = { version = "0.9.0-beta.1", features = ["macros"] }
32+
compio = { version = "0.9.0", features = ["macros"] }
3333
```
3434

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

compio-buf/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "compio-buf"
3-
version = "0.2.0-beta.1"
4-
description = "buffer trait for completion based async IO"
3+
version = "0.2.0"
4+
description = "Buffer trait for completion based async IO"
55
categories = ["asynchronous"]
66
keywords = ["async"]
77
edition = { workspace = true }

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-beta.1"
3+
version = "0.1.0"
44
description = "Multithreading dispatcher for compio"
55
categories = ["asynchronous"]
66
keywords = ["async", "runtime"]

compio-driver/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "compio-driver"
3-
version = "0.2.0-beta.3"
4-
description = "low-level driver for compio"
3+
version = "0.2.0"
4+
description = "Low-level driver for compio"
55
categories = ["asynchronous"]
66
keywords = ["async", "iocp", "io-uring"]
77
edition = { workspace = true }

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-beta.2"
3+
version = "0.2.0"
44
description = "Filesystem IO for compio"
55
categories = ["asynchronous", "filesystem"]
66
keywords = ["async", "fs"]

compio-fs/src/stdio/unix.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ use compio_buf::{BufResult, IoBuf, IoBufMut, IoVectoredBuf, IoVectoredBufMut};
44
use compio_driver::{AsRawFd, FromRawFd, RawFd};
55
use compio_io::{AsyncRead, AsyncWrite};
66

7+
#[cfg(doc)]
8+
use super::{stderr, stdin, stdout};
79
use crate::pipe::{Receiver, Sender};
810

911
/// A handle to the standard input stream of a process.

compio-fs/src/stdio/windows.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,9 @@ use compio_io::{AsyncRead, AsyncWrite};
1515
use compio_runtime::Runtime;
1616
use windows_sys::Win32::System::IO::OVERLAPPED;
1717

18+
#[cfg(doc)]
19+
use super::{stderr, stdin, stdout};
20+
1821
struct StdRead<R: Read, B: IoBufMut> {
1922
reader: R,
2023
buffer: B,

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

compio-log/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "compio-log"
3-
version = "0.1.0-beta.1"
4-
description = "log of compio"
3+
version = "0.1.0"
4+
description = "Log of compio"
55
categories = ["asynchronous"]
66
edition = { workspace = true }
77
authors = { workspace = true }

0 commit comments

Comments
 (0)