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" },