Skip to content

Commit 20a078a

Browse files
chore(release): v0.12.0 (#135)
Drops the rc1 suffix from the three version pins ahead of the v0.12.0 real-release tag. pyproject.toml, __version__, and the tests/test_smoke.py assertion all read 0.12.0; AGENTS.md regenerates with the new version string in its header. uv.lock refreshed because the package's own version changed again. CHANGELOG [0.12.0] section already has today's date (2026-06-05) from the rc1 prep so no drift to fix. Per RELEASING.md, after this PR merges push the v0.12.0 tag from a freshly pulled main. The release workflow routes plain version tags to the pypi GitHub Environment, which carries a Required reviewers protection rule that pauses for explicit manual approval before any PyPI upload. After publish the workflow creates a GitHub Release with auto-generated notes from commits since v0.11.0.
1 parent cc874d4 commit 20a078a

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
@@ -9,7 +9,7 @@ build-backend = "hatchling.build"
99

1010
[project]
1111
name = "openarmature"
12-
version = "0.12.0rc1"
12+
version = "0.12.0"
1313
description = "Workflow framework for LLM pipelines and tool-calling agents."
1414
readme = "README.md"
1515
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.12.0rc1 (spec v0.46.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`.*
3+
*This is the agent guide bundled with the openarmature Python package, version 0.12.0 (spec v0.46.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`.*
44

55
## TL;DR
66

src/openarmature/__init__.py

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

27-
__version__ = "0.12.0rc1"
27+
__version__ = "0.12.0"
2828
__spec_version__ = "0.46.0"
2929
# Proposal 0052 (spec observability §5.1 / §8.4.1): canonical
3030
# package-registry name for this implementation. Surfaces on every

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.12.0rc1"
11+
assert openarmature.__version__ == "0.12.0"
1212
assert openarmature.__spec_version__ == "0.46.0"
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)