Skip to content
Open
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 Cargo.lock

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

2 changes: 2 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ members = [
"rust/examples",
"rust/lance",
"rust/lance-arrow",
"rust/lance-cache-abi",
"rust/lance-core",
"rust/lance-datagen",
"rust/lance-encoding",
Expand Down Expand Up @@ -60,6 +61,7 @@ arc-swap = "1.7"
libc = "0.2.176"
lance = { version = "=9.1.0-beta.2", path = "./rust/lance", default-features = false }
lance-arrow = { version = "=9.1.0-beta.2", path = "./rust/lance-arrow" }
lance-cache-abi = { version = "=9.1.0-beta.2", path = "./rust/lance-cache-abi" }

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This exact workspace dependency also needs a matching .bumpversion.toml rule. Otherwise the next release bump updates the package version while leaving lance-cache-abi pinned to the previous version, and the following cargo update --workspace cannot resolve the path dependency.

lance-core = { version = "=9.1.0-beta.2", path = "./rust/lance-core" }
lance-datafusion = { version = "=9.1.0-beta.2", path = "./rust/lance-datafusion" }
lance-datagen = { version = "=9.1.0-beta.2", path = "./rust/lance-datagen" }
Expand Down
5 changes: 5 additions & 0 deletions java/lance-jni/Cargo.lock

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

5 changes: 5 additions & 0 deletions python/Cargo.lock

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

15 changes: 15 additions & 0 deletions rust/lance-cache-abi/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
[package]
name = "lance-cache-abi"
version.workspace = true
edition.workspace = true
authors.workspace = true
license.workspace = true
repository.workspace = true
readme.workspace = true
description = "Dynamic cache backend ABI for Lance"
keywords.workspace = true
categories.workspace = true
rust-version.workspace = true

[lints]
workspace = true
Loading
Loading