release: version infrastructure + GitHub Release workflow (v1.0.0)#394
Merged
Conversation
- c/version.py: single source of truth (__version__ = "1.0.0") - coli: reads version.py, banner shows dynamic version, --version flag - .github/workflows/release.yml: tag push triggers cross-platform build (Linux x86_64, macOS ARM64, Windows x86_64) and creates a GitHub Release with packaged binaries + changelog notes - CHANGELOG.md: v1.0.0 baseline documenting all shipped features To cut a release: 1. bump c/version.py 2. add a CHANGELOG section 3. git tag v1.0.0 && git push --tags
Contributor
Author
|
@JustVugg — once this lands, the release flow is: git tag v1.0.0
git push --tagsThe workflow builds Linux/macOS/Windows binaries and creates the GitHub Release automatically (with the CHANGELOG section as release notes). The project has 16k+ stars and no tagged version yet — users can't pin to a known-good state, and bug reports reference "latest dev" which is untraceable. A Happy to adjust the version number or CHANGELOG wording if you prefer a different framing. |
Merged
ZacharyZcR
pushed a commit
to ZacharyZcR/colibri
that referenced
this pull request
Jul 19, 2026
…(on top of JustVugg#396) colibri/_version.py now reads c/version.py (JustVugg#394's single source of truth -- coli --version, the release workflow, and pip metadata can no longer drift), with an importlib.metadata fallback for the installed-wheel case where c/ is not on disk. README documents that pip install -e . is the supported form: the engine lives in c/ and is not packaged into a standalone wheel. Verified in a clean venv: pip install -e . -> colibri.__version__ == 1.0.0 read from c/version.py, coli entrypoint on PATH and functional. Co-Authored-By: Claude Fable 5 <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.
Summary
Adds the missing release infrastructure so the project can start shipping tagged versions with pre-built binaries.
New files
c/version.py__version__ = "1.0.0".github/workflows/release.ymlCHANGELOG.mdChanges
c/coli: banner readsversion.pydynamically, adds--versionflagRelease workflow
On
git tag v1.0.0 && git push --tags:How to cut a release
Test plan
python3 c/coli --version→colibrì 1.0.0🐦 Generated with Claude Code