Skip to content
Draft
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
11 changes: 9 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,16 @@ The format is based on Keep a Changelog and this project adheres to
- If there are breaking changes, put a short, actionable checklist here.


## [0.15.5-alpha] - 2025-10-27
## [0.16.0-alpha] - 2025-11-19
### Added
- Added feature-gated `bytes` integration for zero-copy conversion to `bytes::Bytes` (v1.11.0).
- New methods: `EntryHandle::as_bytes()` and `EntryHandle::into_bytes()`.
- Enable with `features = ["bytes"]` in your `Cargo.toml`.
- Perfect for network protocols and async I/O scenarios.

### Changed
- Bumped Apache Arrow dependency to 57.0.0. (No other functional changes.)
- Regresses Apache Arrow dependency to 56.2.0 to be compatible with current [datafusion](https://crates.io/crates/datafusion) crate release.
- Updated `simd-r-drive-entry-handle` README with feature documentation and usage examples.

---

Expand Down
115 changes: 74 additions & 41 deletions Cargo.lock

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

16 changes: 10 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[workspace.package]
authors = ["Jeremy Harris <jeremy.harris@zenosmosis.com>"]
version = "0.15.5-alpha"
version = "0.16.0-alpha"
edition = "2024"
repository = "https://github.com/jzombie/rust-simd-r-drive"
license = "Apache-2.0"
Expand Down Expand Up @@ -54,6 +54,9 @@ parallel = ["rayon"]
# Proxy: when users enable simd-r-drive/arrow, it enables the dep's arrow.
arrow = ["simd-r-drive-entry-handle/arrow"]

# Proxy: when users enable simd-r-drive/bytes, it enables the dep's bytes.
bytes = ["simd-r-drive-entry-handle/bytes"]

[[bench]]
name = "storage_benchmark"
harness = false
Expand All @@ -79,18 +82,19 @@ resolver = "2"

[workspace.dependencies]
# Intra-workspace crates
simd-r-drive = { path = ".", version = "0.15.5-alpha" }
simd-r-drive-entry-handle = { path = "./simd-r-drive-entry-handle", version = "0.15.5-alpha" }
simd-r-drive-ws-client = { path = "./experiments/simd-r-drive-ws-client", version = "0.15.5-alpha" }
simd-r-drive-muxio-service-definition = { path = "./experiments/simd-r-drive-muxio-service-definition", version = "0.15.5-alpha" }
simd-r-drive = { path = ".", version = "0.16.0-alpha" }
simd-r-drive-entry-handle = { path = "./simd-r-drive-entry-handle", version = "0.16.0-alpha" }
simd-r-drive-ws-client = { path = "./experiments/simd-r-drive-ws-client", version = "0.16.0-alpha" }
simd-r-drive-muxio-service-definition = { path = "./experiments/simd-r-drive-muxio-service-definition", version = "0.16.0-alpha" }
muxio-tokio-rpc-client = "0.9.0-alpha"
muxio-tokio-rpc-server = "0.9.0-alpha"
muxio-rpc-service = "0.9.0-alpha"
muxio-rpc-service-caller = "0.9.0-alpha"

# Third-party crates (note, not all dependencies are used in the base drive)
arrow = { version = "57.0.0", default-features = false }
arrow = { version = "56.2.0", default-features = false }
async-trait = "0.1.88"
bytes = "1.11.0"
bincode = "1.3.3" # TODO: Replace with `bitcode`
bitcode = "0.6.6"
clap = "4.5.40"
Expand Down
8 changes: 4 additions & 4 deletions experiments/bindings/python-ws-client/Cargo.lock

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

2 changes: 1 addition & 1 deletion experiments/bindings/python_(old_client)/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "simd-r-drive-py"
version = "0.15.5-alpha"
version = "0.16.0-alpha"
description = "SIMD-optimized append-only schema-less storage engine. Key-based binary storage in a single-file storage container."
repository = "https://github.com/jzombie/rust-simd-r-drive"
license = "Apache-2.0"
Expand Down
Loading
Loading