chore(release): v0.6.0#48
Merged
Merged
Conversation
Consolidated release for the five-PR batch: - Structured output (proposal 0016, PR #42) - Image content blocks (proposal 0015, PR #44) - Prompt management (proposal 0017, PR #45) - State migration for checkpoints (proposal 0014, PR #46) - Parallel branches (proposal 0011, PR #47) Bumps: - ``pyproject.toml`` project.version: 0.5.0 → 0.6.0 - ``__version__`` in src/openarmature/__init__.py - ``uv.lock`` editable package version - ``tests/test_smoke.py`` version assertion Flips CHANGELOG ``[Unreleased]`` to ``[0.6.0] — 2026-05-16``, drops the release-gate Notes entry, and tightens the pre-1.0 MINOR note to list the two behavioral changes (retry-MW attempt-index propagation, CheckpointRecord.schema_version semantic shift) instead of the structured-output-specific note carried over from PR-1. Pinned spec stays at v0.16.1 (set in PR #47).
There was a problem hiding this comment.
Pull request overview
Release-prep PR bumping the package from 0.5.0 to 0.6.0 to consolidate the five-PR batch (proposals 0016, 0015, 0017, 0014, 0011) against spec v0.16.1, and finalizing the CHANGELOG entry.
Changes:
- Version bumps in
pyproject.toml,src/openarmature/__init__.py,uv.lock, and the smoke-test assertion to0.6.0. - CHANGELOG
[Unreleased]promoted to[0.6.0] — 2026-05-16with batch summary and tightened pre-1.0 MINOR note. - Dropped the release-gate note now that all five PRs have landed.
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 | Bumps project.version to 0.6.0. |
| src/openarmature/init.py | Bumps __version__ to 0.6.0. |
| uv.lock | Auto-updated editable-package version. |
| tests/test_smoke.py | Updates version assertion to 0.6.0. |
| CHANGELOG.md | Adds 0.6.0 release section; rewrites Notes block. |
💡 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
Release-prep for v0.6.0, the consolidated tag for the five-PR batch that catches the implementation up from spec v0.10.0 to v0.16.1. After this merges, push the
v0.6.0tag to fire the release workflow.Batch contents
response_schemaonProvider.complete();Response.parsed;StructuredOutputInvalid; OpenAIresponse_formatwire path + prompt-augmentation fallbackUserMessage.contentacceptslist[ContentBlock];TextBlock/ImageBlock+ URL/inline image sources;ProviderUnsupportedContentBlockopenarmature.promptssubpackage;PromptManager+PromptBackendProtocol;FilesystemPromptBackend;with_active_prompt+ OTel span attributesState.schema_version;StateMigration+MigrationRegistry;GraphBuilder.with_state_migration(s); three migration error categories + ambiguity detection;Checkpointer.supports_state_migration;openarmature.checkpoint.migrateOTel spanGraphBuilder.add_parallel_branches_node;BranchSpec+ParallelBranchesNode;NodeEvent.branch_name+openarmature.branch_nameOTel attribute; retry-MW attempt-index ContextVar propagation through transitive wrapping (spec v0.16.1 clarification)Version bumps
pyproject.tomlproject.version:0.5.0→0.6.0src/openarmature/__init__.py__version__:0.5.0→0.6.0uv.lockeditable-package version (auto-updated)tests/test_smoke.pyversion assertion:0.5.0→0.6.0Pinned spec stays at v0.16.1 (set in #47).
CHANGELOG
[Unreleased]→[0.6.0] — 2026-05-16(top blurb names the five proposals).instance_middleware, or any retry on a wrapping subgraph) now carry the wrapping retry's attempt counter on each re-invocation rather than starting at 0. Per-node retry behavior is unchanged.CheckpointRecord.schema_versionsemantic shift. Previously a backend-internal record-shape version (CHECKPOINT_SCHEMA_VERSION = "1"constant), now the user-facing state-schema version per spec §10.2. Pre-v0.6.0 records reinterpreted as user-facing v1 identifiers.Callers who don't wrap subgraphs in retry middleware and don't declare a state-schema version see no behavior change.
Test plan
uv run pytest --ignore=tests/test_examples_smoke.py -q— 687 pass, 56 skipped, 0 failed.uv run pyright— clean.uv run ruff check+uv run ruff format --check— clean.tests/test_smoke.py::test_package_versionsvalidates__version__matches the bumpedpyproject.toml.tests/test_smoke.py::test_spec_version_matches_pyprojectvalidates__spec_version__matches[tool.openarmature].spec_version(still v0.16.1).tests/test_smoke.py::test_spec_version_matches_submodule_changelogvalidates the spec submodule checkout's CHANGELOG latest equals__spec_version__.Release process (post-merge)
v0.6.0tag frommain..github/workflows/release.ymlruns:testjob (pytest + pyright + ruff + version-matches-tag check)buildjob (uv build)publish-pypijob — gated by thepypiGitHub Environment which requires manual reviewer approval before upload.github-releasejob — auto-generates notes from commits since v0.5.0.