From 0c1e106399f9544cb408658fcf94c64699ad4903 Mon Sep 17 00:00:00 2001 From: tmathern <60901087+tmathern@users.noreply.github.com> Date: Fri, 1 May 2026 09:02:03 -0700 Subject: [PATCH 1/3] chore: Update c2pa version to v0.81.0 --- 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 b37eb523..d35caa5f 100644 --- a/c2pa-native-version.txt +++ b/c2pa-native-version.txt @@ -1 +1 @@ -c2pa-v0.80.3 +c2pa-v0.81.0 From 0eda7a5af464c0b492e37b8b908bbbbb57b7e790 Mon Sep 17 00:00:00 2001 From: tmathern <60901087+tmathern@users.noreply.github.com> Date: Fri, 1 May 2026 09:02:30 -0700 Subject: [PATCH 2/3] Bump version from 0.32.5 to 0.32.6 --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 33ba2a15..f8184634 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "c2pa-python" -version = "0.32.5" +version = "0.32.6" requires-python = ">=3.10" description = "Python bindings for the C2PA Content Authenticity Initiative (CAI) library" readme = { file = "README.md", content-type = "text/markdown" } From b0703303d6b5f35088638e18634d709386bb71e9 Mon Sep 17 00:00:00 2001 From: tmathern <60901087+tmathern@users.noreply.github.com> Date: Fri, 1 May 2026 09:02:49 -0700 Subject: [PATCH 3/3] Update expected SDK version in unit test --- 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 e550ac07..da0c33b6 100644 --- a/tests/test_unit_tests.py +++ b/tests/test_unit_tests.py @@ -70,7 +70,7 @@ def load_test_settings_json(): class TestC2paSdk(unittest.TestCase): def test_sdk_version(self): # This test verifies the native libraries used match the expected version. - self.assertIn("0.80.3", sdk_version()) + self.assertIn("0.81.0", sdk_version()) class TestReader(unittest.TestCase):