From 3eb383c852432d4c43416ea0a3c64fc7cff54bae Mon Sep 17 00:00:00 2001 From: tmathern <60901087+tmathern@users.noreply.github.com> Date: Mon, 15 Sep 2025 16:52:00 -0700 Subject: [PATCH 1/3] Update c2pa-native-version.txt --- 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 bab075c7..a0eb3636 100644 --- a/c2pa-native-version.txt +++ b/c2pa-native-version.txt @@ -1 +1 @@ -c2pa-v0.63.0 +c2pa-v0.64.0 From dd13ca016545efeee242693dab65d88afdd0f6bd Mon Sep 17 00:00:00 2001 From: tmathern <60901087+tmathern@users.noreply.github.com> Date: Mon, 15 Sep 2025 16:53:26 -0700 Subject: [PATCH 2/3] fix: Prepare package number bump --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index cc22060b..98b7ae53 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "c2pa-python" -version = "0.21.0" +version = "0.22.0" requires-python = ">=3.10" description = "Python bindings for the C2PA Content Authenticity Initiative (CAI) library" readme = { file = "README.md", content-type = "text/markdown" } From f210a988592f9d38ee7f8f39bbdf25e19f63e8e4 Mon Sep 17 00:00:00 2001 From: tmathern <60901087+tmathern@users.noreply.github.com> Date: Mon, 15 Sep 2025 17:23:29 -0700 Subject: [PATCH 3/3] fix: Update test_unit_tests.py for new version --- 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 8788ec01..d0505b48 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.63.0", sdk_version()) + self.assertIn("0.64.0", sdk_version()) class TestReader(unittest.TestCase):