Skip to content

Commit 1e0a31e

Browse files
chore: release
1 parent 176097b commit 1e0a31e

31 files changed

Lines changed: 155 additions & 29 deletions

File tree

Cargo.toml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -26,20 +26,20 @@ repository = "https://github.com/compio-rs/compio"
2626

2727
[workspace.dependencies]
2828
compio-buf = { path = "./compio-buf", version = "0.8.2-rc.1" }
29-
compio-driver = { path = "./compio-driver", version = "0.12.0-rc.1", default-features = false }
30-
compio-runtime = { path = "./compio-runtime", version = "0.12.0-rc.1" }
31-
compio-executor = { path = "./compio-executor", version = "0.1.0-rc.1" }
32-
compio-macros = { path = "./compio-macros", version = "0.1.2" }
33-
compio-fs = { path = "./compio-fs", version = "0.12.0-rc.1" }
34-
compio-io = { path = "./compio-io", version = "0.10.0-rc.1" }
35-
compio-net = { path = "./compio-net", version = "0.12.0-rc.1" }
36-
compio-signal = { path = "./compio-signal", version = "0.10.0-rc.1" }
37-
compio-dispatcher = { path = "./compio-dispatcher", version = "0.11.0-rc.1" }
38-
compio-log = { path = "./compio-log", version = "0.1.0" }
39-
compio-tls = { path = "./compio-tls", version = "0.10.0-rc.1", default-features = false }
40-
compio-process = { path = "./compio-process", version = "0.9.0-rc.1" }
41-
compio-quic = { path = "./compio-quic", version = "0.8.0-rc.1", default-features = false }
42-
compio-ws = { path = "./compio-ws", version = "0.4.0-rc.1", default-features = false }
29+
compio-driver = { path = "./compio-driver", version = "0.12.0-rc.2", default-features = false }
30+
compio-runtime = { path = "./compio-runtime", version = "0.12.0-rc.2" }
31+
compio-executor = { path = "./compio-executor", version = "0.1.0-rc.2" }
32+
compio-macros = { path = "./compio-macros", version = "0.2.0" }
33+
compio-fs = { path = "./compio-fs", version = "0.12.0-rc.2" }
34+
compio-io = { path = "./compio-io", version = "0.10.0-rc.2" }
35+
compio-net = { path = "./compio-net", version = "0.12.0-rc.2" }
36+
compio-signal = { path = "./compio-signal", version = "0.10.0-rc.2" }
37+
compio-dispatcher = { path = "./compio-dispatcher", version = "0.11.0-rc.2" }
38+
compio-log = { path = "./compio-log", version = "0.2.0" }
39+
compio-tls = { path = "./compio-tls", version = "0.10.0-rc.2", default-features = false }
40+
compio-process = { path = "./compio-process", version = "0.9.1" }
41+
compio-quic = { path = "./compio-quic", version = "0.8.0-rc.2", default-features = false }
42+
compio-ws = { path = "./compio-ws", version = "0.4.0-rc.2", default-features = false }
4343

4444
bytes = "1.7.1"
4545
bytemuck = "1.25.0"

compio-dispatcher/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.11.0-rc.2](https://github.com/compio-rs/compio/compare/compio-dispatcher-v0.11.0-rc.1...compio-dispatcher-v0.11.0-rc.2) - 2026-04-26
11+
12+
### Other
13+
14+
- updated the following local packages: compio-driver, compio-io, compio-macros, compio-net, compio-signal, compio-runtime
15+
1016
## 0.11.0-rc.1 - 2026-04-20
1117

1218
### Added

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

compio-driver/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.12.0-rc.2](https://github.com/compio-rs/compio/compare/compio-driver-v0.12.0-rc.1...compio-driver-v0.12.0-rc.2) - 2026-04-26
11+
12+
### Added
13+
14+
- *(io,net)* async zerocopy write traits ([#898](https://github.com/compio-rs/compio/pull/898))
15+
16+
### Other
17+
18+
- add more targets for docs.rs ([#896](https://github.com/compio-rs/compio/pull/896))
19+
1020
## 0.12.0-rc.1 - 2026-04-20
1121

1222
### Added

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.12.0-rc.1"
3+
version = "0.12.0-rc.2"
44
description = "Low-level driver for compio"
55
categories = ["asynchronous"]
66
keywords = ["async", "iocp", "io-uring"]

compio-executor/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.1.0-rc.2](https://github.com/compio-rs/compio/compare/compio-executor-v0.1.0-rc.1...compio-executor-v0.1.0-rc.2) - 2026-04-26
11+
12+
### Other
13+
14+
- updated the following local packages: compio-log
15+
1016
## 0.1.0-rc.1 - 2026-04-20
1117

1218
### Added

compio-executor/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-executor"
3-
version = "0.1.0-rc.1"
3+
version = "0.1.0-rc.2"
44
description = "Executor for compio"
55
categories = ["asynchronous"]
66
keywords = ["async", "executor"]

compio-fs/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.12.0-rc.2](https://github.com/compio-rs/compio/compare/compio-fs-v0.12.0-rc.1...compio-fs-v0.12.0-rc.2) - 2026-04-26
11+
12+
### Other
13+
14+
- add more targets for docs.rs ([#896](https://github.com/compio-rs/compio/pull/896))
15+
1016
## 0.12.0-rc.1 - 2026-04-20
1117

1218
### Added

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

compio-io/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.10.0-rc.2](https://github.com/compio-rs/compio/compare/compio-io-v0.10.0-rc.1...compio-io-v0.10.0-rc.2) - 2026-04-26
11+
12+
### Added
13+
14+
- *(io,net)* async zerocopy write traits ([#898](https://github.com/compio-rs/compio/pull/898))
15+
1016
## 0.10.0-rc.1 - 2026-04-20
1117

1218
### Added

0 commit comments

Comments
 (0)