From 13236951e30128acd4e6ca8241778b1e404ff878 Mon Sep 17 00:00:00 2001 From: chris-colinsky Date: Sat, 18 Jul 2026 19:15:49 -0700 Subject: [PATCH] chore(release): v0.16.0-rc1 Bump the package version to the rc form (0.16.0rc1) across pyproject, __init__, the smoke-test assertion, uv.lock, and the regenerated AGENTS.md, and date the CHANGELOG 0.16.0 section for the rc tag day. The real-release bump back to 0.16.0 rides a separate commit after the rc verifies. --- CHANGELOG.md | 2 +- pyproject.toml | 2 +- src/openarmature/AGENTS.md | 2 +- src/openarmature/__init__.py | 2 +- tests/test_smoke.py | 2 +- uv.lock | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b3c205a..73d3203 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@ All notable changes to `openarmature-python` are documented in this file. The format follows [Keep a Changelog](https://keepachangelog.com/en/1.1.0/). The package follows [Semantic Versioning](https://semver.org/); pre-1.0 minor bumps may carry behavioral changes per [spec governance](https://github.com/LunarCommand/openarmature-spec/blob/main/GOVERNANCE.md). -## [Unreleased] +## [0.16.0] — 2026-07-18 ### Added diff --git a/pyproject.toml b/pyproject.toml index 40dc7de..79af4a7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -9,7 +9,7 @@ build-backend = "hatchling.build" [project] name = "openarmature" -version = "0.16.0" +version = "0.16.0rc1" 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 5b62fbb..4774193 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.16.0 (spec v0.88.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.16.0rc1 (spec v0.88.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 1dfe723..12f76f8 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.16.0" +__version__ = "0.16.0rc1" __spec_version__ = "0.88.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 d0b46a2..8279714 100644 --- a/tests/test_smoke.py +++ b/tests/test_smoke.py @@ -8,7 +8,7 @@ def test_package_versions() -> None: - assert openarmature.__version__ == "0.16.0" + assert openarmature.__version__ == "0.16.0rc1" assert openarmature.__spec_version__ == "0.88.0" diff --git a/uv.lock b/uv.lock index 2caf62c..6607b1d 100644 --- a/uv.lock +++ b/uv.lock @@ -925,7 +925,7 @@ wheels = [ [[package]] name = "openarmature" -version = "0.16.0" +version = "0.16.0rc1" source = { editable = "." } dependencies = [ { name = "httpx" },