Skip to content

Commit cd7acab

Browse files
chore(release): v0.10.0 (#90)
Real-release bump after v0.10.0-rc1 verified on TestPyPI (fresh-venv install, version + [otel]/[langfuse] extras imports, and examples/00-hello-world run to completion against a live endpoint). Version 0.10.0rc1 → 0.10.0 across pyproject, __init__, smoke test, uv.lock; AGENTS.md regenerated with the release version stamp. The CHANGELOG [0.10.0] date (2026-05-27) already matches today, no refresh needed. Tagging v0.10.0 after merge routes to PyPI + a GitHub Release per RELEASING.md; the pypi environment's required-reviewer gate pauses the upload for manual approval.
1 parent 186bcb1 commit cd7acab

5 files changed

Lines changed: 5 additions & 5 deletions

File tree

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "openarmature"
7-
version = "0.10.0rc1"
7+
version = "0.10.0"
88
description = "Workflow framework for LLM pipelines and tool-calling agents."
99
readme = "README.md"
1010
requires-python = ">=3.12"

src/openarmature/AGENTS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# OpenArmature — Agent documentation
22

3-
*This is the agent guide bundled with the openarmature Python package, version 0.10.0rc1 (spec v0.27.1). 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`.*
3+
*This is the agent guide bundled with the openarmature Python package, version 0.10.0 (spec v0.27.1). 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`.*
44

55
## TL;DR
66

src/openarmature/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,5 +24,5 @@
2424
sessions opening the project find the bundled docs automatically.
2525
"""
2626

27-
__version__ = "0.10.0rc1"
27+
__version__ = "0.10.0"
2828
__spec_version__ = "0.27.1"

tests/test_smoke.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99

1010
def test_package_versions() -> None:
11-
assert openarmature.__version__ == "0.10.0rc1"
11+
assert openarmature.__version__ == "0.10.0"
1212
assert openarmature.__spec_version__ == "0.27.1"
1313

1414

uv.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)