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


## [0.15.5-alpha] - 2025-10-27
### Changed
- Bumped Apache Arrow dependency to 57.0.0. (No other functional changes.)

---

## [0.15.0-alpha] - 2025-09-25
Expand Down
134 changes: 46 additions & 88 deletions Cargo.lock

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

12 changes: 6 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[workspace.package]
authors = ["Jeremy Harris <[email protected]>"]
version = "0.15.0-alpha"
version = "0.15.5-alpha"
edition = "2024"
repository = "https://github.com/jzombie/rust-simd-r-drive"
license = "Apache-2.0"
Expand Down Expand Up @@ -79,17 +79,17 @@ resolver = "2"

[workspace.dependencies]
# Intra-workspace crates
simd-r-drive = { path = ".", version = "0.15.0-alpha" }
simd-r-drive-entry-handle = { path = "./simd-r-drive-entry-handle", version = "0.15.0-alpha" }
simd-r-drive-ws-client = { path = "./experiments/simd-r-drive-ws-client", version = "0.15.0-alpha" }
simd-r-drive-muxio-service-definition = { path = "./experiments/simd-r-drive-muxio-service-definition", version = "0.15.0-alpha" }
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" }
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 = "56.1.0", default-features = false }
arrow = { version = "57.0.0", default-features = false }
async-trait = "0.1.88"
bincode = "1.3.3" # TODO: Replace with `bitcode`
bitcode = "0.6.6"
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.0-alpha"
version = "0.15.5-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