Release 0.0.10 - #86
Merged
Merged
Conversation
Reviewer's GuideBumps devlaunch from 0.0.9 to 0.0.10, updates the conda recipe context version accordingly, and adds a 0.0.10 changelog section documenting the recent login-shell fix and other behavior changes so the automated publish workflow can cut and tag the new release correctly. Flow diagram for version and changelog driven publish workflowflowchart LR
A[Push_to_main_with_version_0_0_10] --> B[Publish_job_detects_version_change]
B --> C[Publish_job_reads_changelog_with_parse_changelog_true]
C --> D[Publish_job_publishes_to_pypi_and_tags_v0_0_10]
D --> E[Release_event_triggers_conda_publish]
E --> F[Conda_publish_builds_recipe_with_context_version_0_0_10]
F --> G[Conda_package_published_to_prefix_dev_blooop]
File-Level Changes
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #86 +/- ##
=======================================
Coverage 89.24% 89.24%
=======================================
Files 12 12
Lines 1636 1636
=======================================
Hits 1460 1460
Misses 176 176 🚀 New features to boost your workflow:
|
This was referenced Aug 7, 2026
Closed
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.
Cuts 0.0.10 so the login-shell fix reaches an installed
dl.mainis at 0.0.9, but tagv0.0.9predates six merged PRs — #77, #78, #76, #81 and #82 are all sitting onmainunreleased. Most immediately #82: without a release,dl blooop/devlaunch -- "claude --version"still fails with exit 127 on an installed build, which is exactly what was just observed on the host:No
bash -lcin that argv — the installed build is pre-#82.Changes
pyproject.tomlandconda.recipe/recipe.yaml:0.0.9→0.0.10. Both, because the recipe carries its owncontext.versionand pinstag: v${{ version }}— leaving it behind would make the conda build fetch the wrong tag.CHANGELOG.md: a## [0.0.10]section covering everything merged sincev0.0.9.The changelog section is not optional bookkeeping here:
publish.ymlrunsetils-actions/pypi-auto-publishwithparse-changelog: true, so it reads the notes for the new version out of this file.After merge
publish-jobfires on the push tomain, sees the version increase, publishes to PyPI and tags/releasesv0.0.10; that release event triggersconda-publish.yml, which builds the recipe and pushes toprefix.dev/blooop. Once that lands:pixi global install --channel conda-forge --channel https://prefix.dev/blooop devlaunch dl --install # completions changed in 0.0.9 — aid shares dl's completion functionNote
The end-to-end check for #82 —
dl <repo> -- 'claude --version'exiting 0 — is still unwitnessed; no container in that work haddevpod. This release is what makes it checkable on a real host.🤖 Generated with Claude Code
Summary by Sourcery
Release version 0.0.10 with updated packaging metadata and changelog to capture recent fixes and improvements.
New Features:
dl-nextCLI while keeping the releaseddlbinary intact.Bug Fixes:
dl <repo> -- <cmd>commands run in a login shell so workspace PATH (including pixi-installed binaries) is respected and commands no longer fail withcommand not found.Enhancements:
Build: