From 23ef09f989303206bc064d7f14f5c362bf9c18a6 Mon Sep 17 00:00:00 2001 From: chris-colinsky Date: Sat, 23 May 2026 11:10:13 -0700 Subject: [PATCH] chore(release): v0.8.0 Drop the rc1 suffix from the three pinned version sites: pyproject, __version__, and the test_smoke assertion. uv.lock refreshed via the uv-lock pre-commit hook to match. CHANGELOG date already 2026-05-23 from the rc1 prep; same date applies to the real release. Spec pin already at v0.17.0; no spec submodule change. --- 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 3932436..12647f9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "openarmature" -version = "0.8.0rc1" +version = "0.8.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 26d6c8c..cfd3c42 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.8.0rc1" +__version__ = "0.8.0" __spec_version__ = "0.17.0" diff --git a/tests/test_smoke.py b/tests/test_smoke.py index e78d828..c590392 100644 --- a/tests/test_smoke.py +++ b/tests/test_smoke.py @@ -8,7 +8,7 @@ def test_package_versions() -> None: - assert openarmature.__version__ == "0.8.0rc1" + assert openarmature.__version__ == "0.8.0" assert openarmature.__spec_version__ == "0.17.0" diff --git a/uv.lock b/uv.lock index 290ced0..aeb7465 100644 --- a/uv.lock +++ b/uv.lock @@ -885,7 +885,7 @@ wheels = [ [[package]] name = "openarmature" -version = "0.8.0rc1" +version = "0.8.0" source = { editable = "." } dependencies = [ { name = "httpx" },