Skip to content
This repository was archived by the owner on Jun 19, 2026. It is now read-only.

Commit db77fd0

Browse files
chore: release v0.9.0-rc.1
1 parent 35b5357 commit db77fd0

12 files changed

Lines changed: 130 additions & 39 deletions

File tree

Cargo.lock

Lines changed: 20 additions & 20 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ members = [
3131
exclude = ["fuzz"]
3232

3333
[workspace.package]
34-
version = "0.9.0-rc.0"
34+
version = "0.9.0-rc.1"
3535
edition = "2024"
3636
rust-version = "1.91"
3737
readme = "README.md"
@@ -44,25 +44,25 @@ categories = ["network-programming", "asynchronous"]
4444

4545
[workspace.dependencies]
4646
# Internal crates
47-
vox = { path = "rust/vox", version = "0.9.0-rc.0" }
48-
vox-types = { path = "rust/vox-types", version = "0.9.0-rc.0" }
49-
vox-rt = { path = "rust/vox-rt", version = "0.9.0-rc.0" }
50-
vox-rt-macros = { path = "rust/vox-rt-macros", version = "0.9.0-rc.0" }
51-
vox-schema = { path = "rust/vox-schema", version = "0.9.0-rc.0" }
52-
vox-macros-parse = { path = "rust/vox-macros-parse", version = "0.9.0-rc.0" }
53-
vox-macros-core = { path = "rust/vox-macros-core", version = "0.9.0-rc.0" }
54-
vox-service-macros = { path = "rust/vox-macros", version = "0.9.0-rc.0" }
55-
vox-core = { path = "rust/vox-core", version = "0.9.0-rc.0" }
56-
vox-stream = { path = "rust/vox-stream", version = "0.9.0-rc.0" }
57-
vox-fdpass = { path = "rust/vox-fdpass", version = "0.9.0-rc.0" }
58-
vox-codegen = { path = "rust/vox-codegen", version = "0.9.0-rc.0" }
59-
vox-websocket = { path = "rust/vox-websocket", version = "0.9.0-rc.0" }
60-
vox-inprocess = { path = "rust/vox-inprocess", version = "0.9.0-rc.0" }
61-
vox-local = { path = "rust/vox-local", version = "0.9.0-rc.0" }
62-
vox-ffi = { path = "rust/vox-ffi", version = "0.9.0-rc.0" }
47+
vox = { path = "rust/vox", version = "0.9.0-rc.1" }
48+
vox-types = { path = "rust/vox-types", version = "0.9.0-rc.1" }
49+
vox-rt = { path = "rust/vox-rt", version = "0.9.0-rc.1" }
50+
vox-rt-macros = { path = "rust/vox-rt-macros", version = "0.9.0-rc.1" }
51+
vox-schema = { path = "rust/vox-schema", version = "0.9.0-rc.1" }
52+
vox-macros-parse = { path = "rust/vox-macros-parse", version = "0.9.0-rc.1" }
53+
vox-macros-core = { path = "rust/vox-macros-core", version = "0.9.0-rc.1" }
54+
vox-service-macros = { path = "rust/vox-macros", version = "0.9.0-rc.1" }
55+
vox-core = { path = "rust/vox-core", version = "0.9.0-rc.1" }
56+
vox-stream = { path = "rust/vox-stream", version = "0.9.0-rc.1" }
57+
vox-fdpass = { path = "rust/vox-fdpass", version = "0.9.0-rc.1" }
58+
vox-codegen = { path = "rust/vox-codegen", version = "0.9.0-rc.1" }
59+
vox-websocket = { path = "rust/vox-websocket", version = "0.9.0-rc.1" }
60+
vox-inprocess = { path = "rust/vox-inprocess", version = "0.9.0-rc.1" }
61+
vox-local = { path = "rust/vox-local", version = "0.9.0-rc.1" }
62+
vox-ffi = { path = "rust/vox-ffi", version = "0.9.0-rc.1" }
6363
subject-rust = { path = "rust/subject-rust", version = "0.2.2" }
6464
spec-proto = { path = "spec/spec-proto", version = "0.2.2" }
65-
vox-phon = { path = "rust/vox-phon", version = "0.9.0-rc.0" }
65+
vox-phon = { path = "rust/vox-phon", version = "0.9.0-rc.1" }
6666

6767
phon = "0.2.0-rc.0"
6868
phon-engine = "0.2.0-rc.0"

rust/vox-codegen/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [0.9.0-rc.1](https://github.com/bearcove/vox/compare/vox-codegen-v0.9.0-rc.0...vox-codegen-v0.9.0-rc.1) - 2026-06-17
11+
12+
### Other
13+
14+
- Purge stale channel lifetime rules
15+
- Remove TypeScript formatter dependency
16+
- Remove moire from dep tree ([#379](https://github.com/bearcove/vox/pull/379))
17+
1018
## [0.5.0](https://github.com/bearcove/vox/compare/vox-codegen-v0.4.0...vox-codegen-v0.5.0) - 2026-05-15
1119

1220
### Other

rust/vox-core/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [0.9.0-rc.1](https://github.com/bearcove/vox/compare/vox-core-v0.9.0-rc.0...vox-core-v0.9.0-rc.1) - 2026-06-17
11+
12+
### Other
13+
14+
- Make request scopes explicit
15+
- Enforce request-scoped channel termination
16+
- Remove channel liveness retention
17+
- Purge stale channel lifetime rules
18+
- Make Rust caller drops inert
19+
- Trim stale dependency edges
20+
- Remove moire from dep tree ([#379](https://github.com/bearcove/vox/pull/379))
21+
1022
## [0.8.2](https://github.com/bearcove/vox/compare/vox-core-v0.8.1...vox-core-v0.8.2) - 2026-05-21
1123

1224
### Other

rust/vox-macros-core/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [0.9.0-rc.1](https://github.com/bearcove/vox/compare/vox-macros-core-v0.9.0-rc.0...vox-macros-core-v0.9.0-rc.1) - 2026-06-17
11+
12+
### Other
13+
14+
- Make Rust caller drops inert
15+
- Remove macro Cargo.toml parsing
16+
- Remove moire from dep tree ([#379](https://github.com/bearcove/vox/pull/379))
17+
1018
## [0.6.0](https://github.com/bearcove/vox/compare/vox-macros-core-v0.5.1...vox-macros-core-v0.6.0) - 2026-05-19
1119

1220
### Added

rust/vox-phon/CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
## [Unreleased]
9+
10+
## [0.9.0-rc.1](https://github.com/bearcove/vox/compare/vox-phon-v0.9.0-rc.0...vox-phon-v0.9.0-rc.1) - 2026-06-17
11+
12+
### Other
13+
14+
- Remove moire from dep tree ([#379](https://github.com/bearcove/vox/pull/379))

rust/vox-rt-macros/CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
## [Unreleased]
9+
10+
## [0.9.0-rc.1](https://github.com/bearcove/vox/compare/vox-rt-macros-v0.9.0-rc.0...vox-rt-macros-v0.9.0-rc.1) - 2026-06-17
11+
12+
### Other
13+
14+
- Remove moire from dep tree ([#379](https://github.com/bearcove/vox/pull/379))

rust/vox-rt/CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
## [Unreleased]
9+
10+
## [0.9.0-rc.1](https://github.com/bearcove/vox/compare/vox-rt-v0.9.0-rc.0...vox-rt-v0.9.0-rc.1) - 2026-06-17
11+
12+
### Other
13+
14+
- Remove moire from dep tree ([#379](https://github.com/bearcove/vox/pull/379))

rust/vox-stream/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.9.0-rc.1](https://github.com/bearcove/vox/compare/vox-stream-v0.9.0-rc.0...vox-stream-v0.9.0-rc.1) - 2026-06-17
11+
12+
### Other
13+
14+
- Remove moire from dep tree ([#379](https://github.com/bearcove/vox/pull/379))
15+
1016
## [0.8.2](https://github.com/bearcove/vox/compare/vox-stream-v0.8.1...vox-stream-v0.8.2) - 2026-05-21
1117

1218
### Other

rust/vox-types/CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [0.9.0-rc.1](https://github.com/bearcove/vox/compare/vox-types-v0.9.0-rc.0...vox-types-v0.9.0-rc.1) - 2026-06-17
11+
12+
### Other
13+
14+
- Enforce request-scoped channel termination
15+
- Remove channel liveness retention
16+
- Remove moire from dep tree ([#379](https://github.com/bearcove/vox/pull/379))
17+
1018
## [0.8.2](https://github.com/bearcove/vox/compare/vox-types-v0.8.1...vox-types-v0.8.2) - 2026-05-21
1119

1220
### Other

0 commit comments

Comments
 (0)