From aa5901ad2799512bef9eb4394a834176f93a90de Mon Sep 17 00:00:00 2001 From: tmathern <60901087+tmathern@users.noreply.github.com> Date: Thu, 2 Oct 2025 14:43:31 -0700 Subject: [PATCH 1/3] Bump: c2pa-v0.67.1 --- c2pa-native-version.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/c2pa-native-version.txt b/c2pa-native-version.txt index 6680a69e..c9951732 100644 --- a/c2pa-native-version.txt +++ b/c2pa-native-version.txt @@ -1 +1 @@ -c2pa-v0.67.0 +c2pa-v0.67.1 From 225a543f13f999ef658384922cf8fa850068fe8b Mon Sep 17 00:00:00 2001 From: tmathern <60901087+tmathern@users.noreply.github.com> Date: Thu, 2 Oct 2025 14:44:16 -0700 Subject: [PATCH 2/3] fix: Bump Python version --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index e48f85a5..d2d09be0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "c2pa-python" -version = "0.24.0" +version = "0.24.1" requires-python = ">=3.10" description = "Python bindings for the C2PA Content Authenticity Initiative (CAI) library" readme = { file = "README.md", content-type = "text/markdown" } From 41270b8c7d45abb1122b8d5c9aaa6c4738eecbd1 Mon Sep 17 00:00:00 2001 From: tmathern <60901087+tmathern@users.noreply.github.com> Date: Thu, 2 Oct 2025 14:44:34 -0700 Subject: [PATCH 3/3] fix: Bump SDK version check --- tests/test_unit_tests.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_unit_tests.py b/tests/test_unit_tests.py index b15ffe10..51fc0ea9 100644 --- a/tests/test_unit_tests.py +++ b/tests/test_unit_tests.py @@ -40,7 +40,7 @@ class TestC2paSdk(unittest.TestCase): def test_sdk_version(self): - self.assertIn("0.67.0", sdk_version()) + self.assertIn("0.67.1", sdk_version()) class TestReader(unittest.TestCase):