From 6196a21fce79a6529281bef9aa495d9806a64c31 Mon Sep 17 00:00:00 2001 From: tmathern <60901087+tmathern@users.noreply.github.com> Date: Fri, 19 Dec 2025 20:51:11 -0800 Subject: [PATCH 1/2] chore: Update c2pa version to v0.73.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 c8f95fe2..560aef5c 100644 --- a/c2pa-native-version.txt +++ b/c2pa-native-version.txt @@ -1 +1 @@ -c2pa-v0.73.0 +c2pa-v0.73.1 From 4320fb4a626809ad230f323e0709d22ecc474a02 Mon Sep 17 00:00:00 2001 From: tmathern <60901087+tmathern@users.noreply.github.com> Date: Fri, 19 Dec 2025 20:52:42 -0800 Subject: [PATCH 2/2] fix: 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 6fa4326e..1c3bfbed 100644 --- a/tests/test_unit_tests.py +++ b/tests/test_unit_tests.py @@ -67,7 +67,7 @@ def load_test_settings_json(): class TestC2paSdk(unittest.TestCase): def test_sdk_version(self): - self.assertIn("0.73.0", sdk_version()) + self.assertIn("0.73.1", sdk_version()) class TestReader(unittest.TestCase):