From 178f890926a453d3c0f239ed41c5b23d1181ab03 Mon Sep 17 00:00:00 2001 From: chris-colinsky Date: Fri, 22 May 2026 20:48:46 -0700 Subject: [PATCH] chore(release): v0.7.0 Bump pyproject, __version__, and the smoke-test assertion from 0.7.0rc1 to 0.7.0 for the real-release tag. The v0.7.0-rc1 tag published cleanly to TestPyPI and verification passed (fresh-venv install, version + spec_version readback, new exports importable, [otel] extra installs, end-to-end graph compile + invoke, docs site good). --- pyproject.toml | 2 +- src/openarmature/__init__.py | 2 +- tests/test_smoke.py | 2 +- uv.lock | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index feb736e..46931e1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "openarmature" -version = "0.7.0rc1" +version = "0.7.0" description = "Workflow framework for LLM pipelines and tool-calling agents." readme = "README.md" requires-python = ">=3.12" diff --git a/src/openarmature/__init__.py b/src/openarmature/__init__.py index 564a567..2bb00be 100644 --- a/src/openarmature/__init__.py +++ b/src/openarmature/__init__.py @@ -1,4 +1,4 @@ """OpenArmature: workflow framework for LLM pipelines and tool-calling agents.""" -__version__ = "0.7.0rc1" +__version__ = "0.7.0" __spec_version__ = "0.16.1" diff --git a/tests/test_smoke.py b/tests/test_smoke.py index 5471c61..ac13dd0 100644 --- a/tests/test_smoke.py +++ b/tests/test_smoke.py @@ -8,7 +8,7 @@ def test_package_versions() -> None: - assert openarmature.__version__ == "0.7.0rc1" + assert openarmature.__version__ == "0.7.0" assert openarmature.__spec_version__ == "0.16.1" diff --git a/uv.lock b/uv.lock index 0e60ce9..b1701ea 100644 --- a/uv.lock +++ b/uv.lock @@ -885,7 +885,7 @@ wheels = [ [[package]] name = "openarmature" -version = "0.7.0rc1" +version = "0.7.0" source = { editable = "." } dependencies = [ { name = "httpx" },