ci: add missing bumpversion entry for lance-derive#7190
Merged
Conversation
The `lance-derive` crate (added in lance-format#6229) was missing from `.bumpversion.toml`, so the workspace `Cargo.toml` dependency line for it was not bumped during beta releases. This left `lance-derive = "=8.0.0-beta.N"` pinned to the previous version while `rust/lance-derive/Cargo.toml` itself was bumped via `[workspace.package].version`, causing `cargo` to fail with: error: failed to select a version for the requirement `lance-derive = "=8.0.0-beta.7"` Failing run: https://github.com/lance-format/lance/actions/runs/27225140622 Follows the same pattern as the fixes in lance-format#6526 (lance-tokenizer) and lance-format#4572 (fsst, bitpacking).
wkalt
approved these changes
Jun 9, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
[[tool.bumpversion.files]]entry forlance-derivein.bumpversion.tomlso its workspace dependency line inCargo.tomlis bumped alongside the other lance crates during beta releases.Why
The
lance-derivecrate (added in #6229) was missing from.bumpversion.toml. As a result, during the most recentpublish-betarun,[workspace.package].versionwas bumped from8.0.0-beta.7→8.0.0-beta.8(which bumpedrust/lance-derive/Cargo.toml), but the workspace dependency line in the rootCargo.tomlstayed atlance-derive = { version = "=8.0.0-beta.7", ... }. Cargo then failed:Failing run: https://github.com/lance-format/lance/actions/runs/27225140622/job/80390190228
Same fix pattern as #6526 (lance-tokenizer) and #4572 (fsst, bitpacking).
Test plan
publish-betarun succeeds and bumpslance-derivein lockstep with the other crates.🤖 Generated with Claude Code