Skip to content

Commit e68a379

Browse files
chore: release
1 parent 37da6da commit e68a379

31 files changed

Lines changed: 153 additions & 29 deletions

File tree

Cargo.toml

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

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

4646
async-io = "2.6.0"
4747
bytes = "1.7.1"

compio-compat/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-compat-v0.1.0-rc.1...compio-compat-v0.1.0-rc.2) - 2026-05-18
11+
12+
### Changed
13+
14+
- replace `cfg_if` with `cfg_select` ([#925](https://github.com/compio-rs/compio/pull/925))
15+
1016
## 0.1.0-rc.1 - 2026-05-15
1117

1218
### Added

compio-compat/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-compat"
3-
version = "0.1.0-rc.1"
3+
version = "0.1.0-rc.2"
44
description = "Compatibility layer for compio to work with various async runtimes."
55
categories = ["asynchronous", "filesystem", "network-programming"]
66
keywords = ["async", "fs", "iocp", "io-uring", "net"]

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.3](https://github.com/compio-rs/compio/compare/compio-dispatcher-v0.11.0-rc.2...compio-dispatcher-v0.11.0-rc.3) - 2026-05-18
11+
12+
### Other
13+
14+
- updated the following local packages: compio-driver, compio-io, compio-runtime, compio-macros, compio-net
15+
1016
## 0.11.0-rc.2 - 2026-05-15
1117

1218
### Other

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.2"
3+
version = "0.11.0-rc.3"
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.3](https://github.com/compio-rs/compio/compare/compio-driver-v0.12.0-rc.2...compio-driver-v0.12.0-rc.3) - 2026-05-18
11+
12+
### Changed
13+
14+
- replace `cfg_if` with `cfg_select` ([#925](https://github.com/compio-rs/compio/pull/925))
15+
16+
### Other
17+
18+
- check android & ios ([#922](https://github.com/compio-rs/compio/pull/922))
19+
1020
## 0.12.0-rc.2 - 2026-05-15
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.2"
3+
version = "0.12.0-rc.3"
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.3](https://github.com/compio-rs/compio/compare/compio-executor-v0.1.0-rc.2...compio-executor-v0.1.0-rc.3) - 2026-05-18
11+
12+
### Changed
13+
14+
- replace `cfg_if` with `cfg_select` ([#925](https://github.com/compio-rs/compio/pull/925))
15+
1016
## 0.1.0-rc.2 - 2026-05-15
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.2"
3+
version = "0.1.0-rc.3"
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.3](https://github.com/compio-rs/compio/compare/compio-fs-v0.12.0-rc.2...compio-fs-v0.12.0-rc.3) - 2026-05-18
11+
12+
### Changed
13+
14+
- replace `cfg_if` with `cfg_select` ([#925](https://github.com/compio-rs/compio/pull/925))
15+
1016
## 0.12.0-rc.2 - 2026-05-15
1117

1218
### Other

0 commit comments

Comments
 (0)