chore: bump to 0.6.1 - #244
Merged
Merged
Conversation
Patch bump: packaging and documentation only, no behaviour change. 0.6.0's deploy exposed that the documented install upgraded `keel_trader` alone and silently left `keel-core` / `keel-broker-*` behind -- the real deployment was found running keel-trader 0.5.7 against keel-core 0.5.5, across two releases, because the dependencies were unpinned and `keel --version` reports only the keel-trader distribution and so could not see it. #243 pinned every intra-workspace dependency to the exact version, added `keel versions` (which exits 1 on a partial install), and corrected the README. This is the first release whose wheels CARRY those pins, so it is also the first one whose install is self-correcting: `Requires-Dist: keel-core==0.6.1` forces the sibling upgrade regardless of how the wheel is installed. `tests/test_packaging.py`, added by the same PR, is what kept this bump honest -- bumping the root version alone failed it twice before the pins were updated. Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
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.
Patch bump — packaging and docs only, no behaviour change. Bumps the root distribution, all five workspace packages, every intra-workspace pin, and
uv.lock.Why this release matters more than a patch usually does
0.6.0's deploy exposed that the documented install upgraded
keel_traderalone and silently left the siblings behind. The real deployment was found runningkeel-trader 0.5.7againstkeel-core 0.5.5— two releases stale — because the dependencies were unpinned, andkeel --versionreports only thekeel-traderdistribution so it could not see the mismatch.#243 fixed that. This is the first release whose wheels carry the pins, which makes it the first self-correcting install:
Verified by reading the built wheel's
METADATA, not assumed.The new packaging test did its job on this very bump
Bumping the root version alone failed it twice before the pins were updated:
That is precisely the silent failure it was written to catch.
Gates, run locally on this branch
After merge
release.ymlwith0.6.1~/keelper the corrected README flowkeel versionsmust exit 0 — that is the check 0.6.0 could not performNo schema change (both DBs already at 10), so no migration this time.