Prepare v0.16.0: promote rc to final release#224
Merged
Conversation
Promote v0.16.0-rc1 to the final release: bump the package version from 0.16.0rc1 to 0.16.0 and regenerate the bundled AGENTS.md and lockfile to match. TestPyPI verification of the rc passed (fresh-venv install, retrieval surface, and the retrieval-rag example end to end), so the final tag can be cut from this.
There was a problem hiding this comment.
Pull request overview
Promotes the package from v0.16.0-rc1 to the final v0.16.0 release by updating the canonical version sources (project metadata, runtime constant, smoke test assertion) and regenerating bundled artifacts to match. This aligns the repository state with the intended final release tag/publish step, without altering runtime behavior.
Changes:
- Bump
openarmatureversion from0.16.0rc1to0.16.0inpyproject.tomlandsrc/openarmature/__init__.py. - Update smoke test version assertion to match
0.16.0. - Regenerate
src/openarmature/AGENTS.mdanduv.lockso bundled docs and lock metadata reflect the final version.
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 |
|---|---|
pyproject.toml |
Updates project version to 0.16.0 (release metadata). |
src/openarmature/__init__.py |
Updates runtime __version__ constant to 0.16.0. |
tests/test_smoke.py |
Updates smoke test assertion to expect 0.16.0. |
src/openarmature/AGENTS.md |
Regenerated bundled agent guide header to reflect 0.16.0. |
uv.lock |
Regenerated lock entry for the editable openarmature package to 0.16.0. |
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.
Promote
v0.16.0-rc1to the finalv0.16.0release.Bumps the package version from
0.16.0rc1to0.16.0and regenerates the bundledAGENTS.mdanduv.lockto match. No behavior change; the second half of the rc-first release flow.The rc was verified against TestPyPI before this bump: a fresh-venv install of
openarmature==0.16.0rc1resolved cleanly, the four retrieval providers and the four top-level retrieval events imported from the published wheel, the[otel]extra resolved, and theretrieval-ragexample ran end to end (batch-embed index, cosine retrieve, Cohere rerank, grounded OpenAI answer) with the trace observer emittingEmbeddingEvent/RerankEvent.Once this merges, the
v0.16.0tag publishes to PyPI and cuts the GitHub Release.Changed
pyproject.toml,src/openarmature/__init__.py,tests/test_smoke.py-- version0.16.0rc1->0.16.0src/openarmature/AGENTS.md,uv.lock-- regenerated to match