Skip to content

Commit 144ed53

Browse files
chore: bump to 0.4.0rc0 for release pipeline smoke test (#12)
One-shot bump so we can tag v0.4.0-rc0 and verify the TestPyPI publish flow end-to-end (OIDC trusted publisher, build, upload, install). The rc0 slot on TestPyPI is a throwaway — it never goes to real PyPI and doesn't conflict with any future v0.5.0 release plans. After the smoke test verifies, main stays at 0.4.0rc0 until Phase 6 release prep bumps it forward to whatever the real release version is (likely 0.5.0rc1).
1 parent fedcce6 commit 144ed53

4 files changed

Lines changed: 4 additions & 4 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.4.0"
7+
version = "0.4.0rc0"
88
description = "Workflow framework for LLM pipelines and tool-calling agents."
99
readme = "README.md"
1010
requires-python = ">=3.12"

src/openarmature/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
"""OpenArmature — workflow framework for LLM pipelines and tool-calling agents."""
22

3-
__version__ = "0.4.0"
3+
__version__ = "0.4.0rc0"
44
__spec_version__ = "0.3.1"

tests/test_smoke.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22

33

44
def test_package_versions() -> None:
5-
assert openarmature.__version__ == "0.4.0"
5+
assert openarmature.__version__ == "0.4.0rc0"
66
assert openarmature.__spec_version__ == "0.3.1"

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)