Cut 0.36.0 - #593
Merged
Merged
Conversation
The [Unreleased] section as it stood becomes the release: one completion fix and one prebuild fix, both of which were costing people something silently. A flag before the workspace spec no longer stops tab completion. `aid --codex owner/repo<TAB>` offered nothing at all, and so did every other agent flag and `dl --devcontainer robot owner/repo<TAB>`, because the script found the spec by counting words from the command and neither grammar places it by count. It scans the words before the cursor now and counts the positional ones. The half worth reading twice is which way the flag table points. It lists the flags a workspace spec may follow, and every other flag ends the line, because the flags nobody thinks to list are all on the ending side: the first attempt listed the endings and put ten flags in the wrong arm, each of which refuses a workspace for one of four different reasons. `dl --repos my-ws` answers "--repos takes no workspace", `dl --json my-ws` is a clap error about the missing `--ls`, and a leading `--force` is not a modifier at all but the workspace slot itself. Completing a name onto any of those is worse than completing nothing, so the default arm is the refusal, and both tables are derived from the grammar with a test doing the subtraction. Editing prose under `.devcontainer/` no longer throws away the prebuilt container. The prebuild tag is a hash of the build context, and with a Dockerfile that copies nothing devpod hashed the whole context directory, so the feature's README and the host-side hook moved a tag that is supposed to move only when the image would differ. Every launch on a branch carrying such an edit was building locally, several minutes at a time, with slowness as the only symptom. Claude-Session: https://claude.ai/code/session_01GxeUVm3R579Tqai6GwoEmb
Reviewer's guide (collapsed on small PRs)Reviewer's GuideThis release-only PR cuts version 0.36.0 by changing the Cargo workspace source version, synchronizing Cargo.lock, updating README version references, and moving the existing unreleased fixes under a dated changelog heading. Review the lockfile metadata diff and verify that both binaries report 0.36.0 from a locked release build. File-Level Changes
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
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.
Releases the [Unreleased] section as it stood: the completion fix from #592 — fix: a flag before the workspace spec stopped tab completion and the prebuild fix from #590 — fix: the prebuild tag moved for files the image cannot see.
Four files, the same four every cut touches:
rust/Cargo.toml(the single source of the version),rust/Cargo.lock, the two version strings inREADME.md, and theCHANGELOG.mdheading.dl --versionandaid --versionboth print0.36.0from a--lockedrelease build.Minor rather than patch, which is what every cut in this repo has been.
🤖 Generated with Claude Code
https://claude.ai/code/session_01GxeUVm3R579Tqai6GwoEmb
Summary by Sourcery
Chores: