Skip to content

Commit 1a8cb94

Browse files
Bump version to 1.4.0
Update spec/VERSION, pyproject.toml, __init__.__version__, and CLI version test to match CHANGELOG v1.4.0 release.
1 parent ebb9941 commit 1a8cb94

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

reference/python/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 = "qp-capsule"
7-
version = "1.3.0"
7+
version = "1.4.0"
88
description = "Capsule Protocol Specification (CPS) — tamper-evident audit records for AI operations. Create, seal, verify, and chain Capsules in Python."
99
readme = "README.md"
1010
license = "Apache-2.0"

reference/python/src/qp_capsule/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636
Spec: https://github.com/quantumpipes/capsule
3737
"""
3838

39-
__version__ = "1.3.0"
39+
__version__ = "1.4.0"
4040
__author__ = "Quantum Pipes Technologies, LLC"
4141
__license__ = "Apache-2.0"
4242

reference/python/tests/test_cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -632,7 +632,7 @@ def test_version_flag(self, capsys, monkeypatch):
632632
main(["--version"])
633633
out = capsys.readouterr().out
634634
assert "capsule" in out
635-
assert "1.3.0" in out
635+
assert "1.4.0" in out
636636

637637
def test_verify_via_main(self, seal, temp_dir, monkeypatch):
638638
monkeypatch.setenv("NO_COLOR", "1")

spec/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.3
1+
1.4

0 commit comments

Comments
 (0)