Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
48 changes: 24 additions & 24 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

40 changes: 20 additions & 20 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ members = [
exclude = ["fuzz"]

[workspace.package]
version = "0.7.0"
version = "0.8.0"
edition = "2024"
rust-version = "1.91"
readme = "README.md"
Expand All @@ -49,27 +49,27 @@ categories = ["network-programming", "asynchronous"]

[workspace.dependencies]
# Internal crates
vox = { path = "rust/vox", version = "0.7.0" }
vox-types = { path = "rust/vox-types", version = "0.7.0" }
vox-schema = { path = "rust/vox-schema", version = "0.7.0" }
vox-macros-parse = { path = "rust/vox-macros-parse", version = "0.7.0" }
vox-macros-core = { path = "rust/vox-macros-core", version = "0.7.0" }
vox-service-macros = { path = "rust/vox-macros", version = "0.7.0" }
vox-core = { path = "rust/vox-core", version = "0.7.0" }
vox-stream = { path = "rust/vox-stream", version = "0.7.0" }
vox-fdpass = { path = "rust/vox-fdpass", version = "0.7.0" }
vox-codegen = { path = "rust/vox-codegen", version = "0.7.0" }
vox-websocket = { path = "rust/vox-websocket", version = "0.7.0" }
vox-inprocess = { path = "rust/vox-inprocess", version = "0.7.0" }
vox-local = { path = "rust/vox-local", version = "0.7.0" }
vox-ffi = { path = "rust/vox-ffi", version = "0.7.0" }
vox = { path = "rust/vox", version = "0.8.0" }
vox-types = { path = "rust/vox-types", version = "0.8.0" }
vox-schema = { path = "rust/vox-schema", version = "0.8.0" }
vox-macros-parse = { path = "rust/vox-macros-parse", version = "0.8.0" }
vox-macros-core = { path = "rust/vox-macros-core", version = "0.8.0" }
vox-service-macros = { path = "rust/vox-macros", version = "0.8.0" }
vox-core = { path = "rust/vox-core", version = "0.8.0" }
vox-stream = { path = "rust/vox-stream", version = "0.8.0" }
vox-fdpass = { path = "rust/vox-fdpass", version = "0.8.0" }
vox-codegen = { path = "rust/vox-codegen", version = "0.8.0" }
vox-websocket = { path = "rust/vox-websocket", version = "0.8.0" }
vox-inprocess = { path = "rust/vox-inprocess", version = "0.8.0" }
vox-local = { path = "rust/vox-local", version = "0.8.0" }
vox-ffi = { path = "rust/vox-ffi", version = "0.8.0" }
subject-rust = { path = "rust/subject-rust", version = "0.2.2" }
spec-proto = { path = "spec/spec-proto", version = "0.2.2" }
vox-postcard = { path = "rust/vox-postcard", version = "0.7.0" }
vox-jit-cal = { path = "rust/vox-jit-cal", version = "0.7.0" }
vox-jit-abi = { path = "rust/vox-jit-abi", version = "0.7.0" }
vox-jit = { path = "rust/vox-jit", version = "0.7.0" }
vox-swift-abi = { path = "rust/vox-swift-abi", version = "0.7.0" }
vox-postcard = { path = "rust/vox-postcard", version = "0.8.0" }
vox-jit-cal = { path = "rust/vox-jit-cal", version = "0.8.0" }
vox-jit-abi = { path = "rust/vox-jit-abi", version = "0.8.0" }
vox-jit = { path = "rust/vox-jit", version = "0.8.0" }
vox-swift-abi = { path = "rust/vox-swift-abi", version = "0.8.0" }
facet-cbor = { path = "rust/facet-cbor", version = "0.3.4" }
ur-taking-me-with-you = { path = "rust/ur-taking-me-with-you", version = "8.0.0" }

Expand Down
6 changes: 6 additions & 0 deletions rust/vox-jit-abi/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.8.0](https://github.com/bearcove/vox/compare/vox-jit-abi-v0.7.0...vox-jit-abi-v0.8.0) - 2026-05-21

### Added

- *(jit)* native BTreeMap/HashMap decode via slab strategy

## [0.7.0](https://github.com/bearcove/vox/compare/vox-jit-abi-v0.6.1...vox-jit-abi-v0.7.0) - 2026-05-20

### Other
Expand Down
7 changes: 7 additions & 0 deletions rust/vox-jit/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.8.0](https://github.com/bearcove/vox/compare/vox-jit-v0.7.0...vox-jit-v0.8.0) - 2026-05-21

### Added

- *(jit)* native BTreeMap/HashMap encode via iterator vtable
- *(jit)* native BTreeMap/HashMap decode via slab strategy

## [0.7.0](https://github.com/bearcove/vox/compare/vox-jit-v0.6.1...vox-jit-v0.7.0) - 2026-05-20

### Other
Expand Down
7 changes: 7 additions & 0 deletions rust/vox-postcard/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.8.0](https://github.com/bearcove/vox/compare/vox-postcard-v0.7.0...vox-postcard-v0.8.0) - 2026-05-21

### Added

- *(jit)* native BTreeMap/HashMap encode via iterator vtable
- *(jit)* native BTreeMap/HashMap decode via slab strategy

## [0.7.0](https://github.com/bearcove/vox/compare/vox-postcard-v0.6.1...vox-postcard-v0.7.0) - 2026-05-20

### Other
Expand Down
2 changes: 1 addition & 1 deletion spec/spec-proto/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ rustdoc-args = ["--html-in-header", "arborium-header.html"]

[dependencies]
facet.workspace = true
vox = { path = "../../rust/vox", version = "0.7.0", default-features = false, features = ["runtime"] }
vox = { path = "../../rust/vox", version = "0.8.0", default-features = false, features = ["runtime"] }
Loading