chore(release): v0.7.0#58
Merged
Merged
Conversation
Docs-and-examples release. Pinned spec stays at v0.16.1; no proposals implemented this cycle. User-visible: - New exports: NextCall, default_classifier (openarmature.graph) - Examples 05-09, per-example docs pages with mermaid diagrams - New Middleware concept page - Reference docs filled in (35 previously-missing entries) - RELEASING.md and docs UX cleanup Behavioral: - FanOutNode.run / ParallelBranchesNode.run raise NotImplementedError instead of RuntimeError; backwards- compatible since NotImplementedError subclasses RuntimeError. See CHANGELOG for the full entry.
There was a problem hiding this comment.
Pull request overview
Prepares the openarmature Python package for the v0.7.0 release by updating the package version metadata, lockfile entry, smoke test expectations, and adding the corresponding changelog section.
Changes:
- Bumped package version to
0.7.0in runtime (__init__.py), packaging metadata (pyproject.toml), anduv.lock. - Updated smoke test to assert the new package version.
- Added a
0.7.0release entry toCHANGELOG.md(dated 2026-05-23), keeping the pinned spec at0.16.1.
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 the editable openarmature package entry to version 0.7.0. |
| tests/test_smoke.py | Updates the asserted openarmature.__version__ to 0.7.0. |
| src/openarmature/init.py | Bumps __version__ to 0.7.0 (spec version unchanged). |
| pyproject.toml | Bumps project.version to 0.7.0. |
| CHANGELOG.md | Adds the 0.7.0 release notes section dated 2026-05-23. |
💡 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.
Release prep for v0.7.0. Docs-and-examples release; pinned spec stays at v0.16.1.
What's in this release
Added
openarmature.graph.NextCallandopenarmature.graph.default_classifierexports, so custom middleware can type itsnext_parameter and extend the retry classifier without reaching into the submodule.docs/concepts/middleware.md).graph,prompts, andcheckpoint(mkdocstrings was silently omitting members without docstrings).RELEASING.mddocumenting the rc-first flow.Changed
FanOutNode.run/ParallelBranchesNode.runraiseNotImplementedErrorinstead ofRuntimeError. Both methods exist only to satisfy theNodeprotocol; the engine dispatches these throughrun_with_context. Backwards-compatible sinceNotImplementedErrorsubclassesRuntimeError.Pre-release checklist (from RELEASING.md)
0.6.0references in user-facing docspyproject.tomlversion pinned to0.7.0Next steps after merge
v0.7.0-rc1and push — workflow publishes to TestPyPIv0.7.0— workflow publishes to PyPI + creates GitHub Release (pypienvironment approval gate applies)Test plan
uv run pytest tests/locally if any further fixups happen