chore(release): v0.9.0#76
Merged
Merged
Conversation
Cut the final release tag for v0.9.0 after v0.9.0-rc1 verified cleanly on TestPyPI (install + version + [otel] extra + bundled AGENTS.md + patterns API + CLI + live example round-trip against real OpenAI endpoint). Bump pyproject, __version__, smoke-test assertion, and the bundled AGENTS.md header from 0.9.0rc1 to 0.9.0. CHANGELOG [0.9.0] - 2026-05-25 section content unchanged from rc1.
There was a problem hiding this comment.
Pull request overview
Release cut from 0.9.0rc1 to 0.9.0 by updating the package version across runtime, packaging metadata, smoke tests, bundled agent docs header, and the lockfile, aligning the repository for the final PyPI/GitHub Release tag flow described in RELEASING.md.
Changes:
- Bump
pyproject.tomlproject version to0.9.0. - Bump runtime
__version__and update the smoke test assertion to0.9.0. - Update bundled
AGENTS.mdheader anduv.lockeditable package version to0.9.0.
Reviewed changes
Copilot reviewed 4 out of 5 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
| uv.lock | Updates editable openarmature package version to 0.9.0. |
| tests/test_smoke.py | Updates version assertion to match final release 0.9.0. |
| src/openarmature/AGENTS.md | Updates bundled agent-doc header version string to 0.9.0. |
| src/openarmature/init.py | Updates runtime __version__ to 0.9.0. |
| pyproject.toml | Updates project version metadata to 0.9.0. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
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
__version__, smoke-test assertion, bundledAGENTS.mdheader, anduv.lockfrom0.9.0rc1to0.9.0.[0.9.0] - 2026-05-25section content unchanged from rc1.Follows from PR #74 (v0.9.0-rc1). The rc verified cleanly on TestPyPI: install in a fresh venv,
__version__ == "0.9.0rc1",[otel]extra installs and imports, bundledAGENTS.mdships at package root,openarmature.patterns.list()returns the four expected slugs,openarmatureCLI lands, andexamples/00-hello-world/main.pyround-tripped against a real OpenAI endpoint (classify → summarize, confidence 0.95).Per
RELEASING.md, thev0.9.0tag (no-rcsuffix) dispatches to real PyPI and creates a GitHub Release with auto-generated notes. Thepypienvironment's "required reviewers" rule (if configured) pauses the publish step for explicit manual approval before any PyPI upload.Test plan
uv run pytest -qruns greenpython -c "import openarmature; print(openarmature.__version__)"prints0.9.0v0.9.0and confirm the workflow routes to PyPI + GitHub Releasepip install openarmaturein a fresh venv resolves the new version from PyPI