Skip to content

Commit 9cbdb30

Browse files
sync spec_version pin to 0.8.2
The Phase 5 + Phase 6 PRs landed conformance against spec versions through v0.8.2 (Phase 5: checkpointing per v0.8 proposal 0008; Phase 6.0: observability per v0.7 proposal 0007). Per the phased- rollout strategy, version pins were left at 0.3.1 across phase PRs to land all together once the catch-up was complete. The submodule already points at v0.8.2; this aligns the three pin sites (pyproject.toml, src/openarmature/__init__.py, tests/test_smoke.py) so the metadata matches what's been shipped. No behavior change.
1 parent d87feaa commit 9cbdb30

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ Repository = "https://github.com/LunarCommand/openarmature-python"
3636
Specification = "https://github.com/LunarCommand/openarmature-spec"
3737

3838
[tool.openarmature]
39-
spec_version = "0.3.1"
39+
spec_version = "0.8.2"
4040

4141
[dependency-groups]
4242
dev = [

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

33
__version__ = "0.4.0rc0"
4-
__spec_version__ = "0.3.1"
4+
__spec_version__ = "0.8.2"

tests/test_smoke.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33

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

0 commit comments

Comments
 (0)