From 66e41435b332ec8ef747718a34259a81177664d7 Mon Sep 17 00:00:00 2001 From: chris-colinsky Date: Tue, 9 Jun 2026 20:24:11 -0700 Subject: [PATCH] chore(release): v0.13.0 Promote 0.13.0rc1 to the 0.13.0 real release after the rc verified clean on TestPyPI (fresh-venv install, version + [otel] import, and hello-world run against a real endpoint). Flip pyproject version, __version__, and the test_smoke assertion to 0.13.0; regenerate AGENTS.md for the version string; refresh uv.lock. CHANGELOG needs no change: the [0.13.0] heading and 2026-06-09 date already match the tag day. After this PR merges, push the v0.13.0 tag from a freshly pulled main to publish to PyPI and create the GitHub Release. --- pyproject.toml | 2 +- src/openarmature/AGENTS.md | 2 +- src/openarmature/__init__.py | 2 +- tests/test_smoke.py | 2 +- uv.lock | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 949256c..aee46c1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -9,7 +9,7 @@ build-backend = "hatchling.build" [project] name = "openarmature" -version = "0.13.0rc1" +version = "0.13.0" description = "Workflow framework for LLM pipelines and tool-calling agents." readme = "README.md" requires-python = ">=3.12" diff --git a/src/openarmature/AGENTS.md b/src/openarmature/AGENTS.md index ee5f3b4..a5fd775 100644 --- a/src/openarmature/AGENTS.md +++ b/src/openarmature/AGENTS.md @@ -1,6 +1,6 @@ # OpenArmature — Agent documentation -*This is the agent guide bundled with the openarmature Python package, version 0.13.0rc1 (spec v0.53.0). For the full docs site see [openarmature.ai](https://openarmature.ai). For the canonical spec text see [openarmature.org/capabilities](https://openarmature.org/capabilities/). For project-specific conventions for the code you're editing, see the host project's `AGENTS.md` or `CLAUDE.md`.* +*This is the agent guide bundled with the openarmature Python package, version 0.13.0 (spec v0.53.0). For the full docs site see [openarmature.ai](https://openarmature.ai). For the canonical spec text see [openarmature.org/capabilities](https://openarmature.org/capabilities/). For project-specific conventions for the code you're editing, see the host project's `AGENTS.md` or `CLAUDE.md`.* ## TL;DR diff --git a/src/openarmature/__init__.py b/src/openarmature/__init__.py index 19dedf2..40863ed 100644 --- a/src/openarmature/__init__.py +++ b/src/openarmature/__init__.py @@ -24,7 +24,7 @@ sessions opening the project find the bundled docs automatically. """ -__version__ = "0.13.0rc1" +__version__ = "0.13.0" __spec_version__ = "0.53.0" # Proposal 0052 (spec observability §5.1 / §8.4.1): canonical # package-registry name for this implementation. Surfaces on every diff --git a/tests/test_smoke.py b/tests/test_smoke.py index 5f57360..26af3c2 100644 --- a/tests/test_smoke.py +++ b/tests/test_smoke.py @@ -8,7 +8,7 @@ def test_package_versions() -> None: - assert openarmature.__version__ == "0.13.0rc1" + assert openarmature.__version__ == "0.13.0" assert openarmature.__spec_version__ == "0.53.0" diff --git a/uv.lock b/uv.lock index eeb77e0..40a51da 100644 --- a/uv.lock +++ b/uv.lock @@ -925,7 +925,7 @@ wheels = [ [[package]] name = "openarmature" -version = "0.13.0rc1" +version = "0.13.0" source = { editable = "." } dependencies = [ { name = "httpx" },