diff --git a/c2pa-native-version.txt b/c2pa-native-version.txt index e3efc94f..56b6e964 100644 --- a/c2pa-native-version.txt +++ b/c2pa-native-version.txt @@ -1 +1 @@ -c2pa-v0.79.3 +c2pa-v0.79.5 diff --git a/pyproject.toml b/pyproject.toml index f23a0c0a..8ea52886 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "c2pa-python" -version = "0.32.2" +version = "0.32.3" requires-python = ">=3.10" description = "Python bindings for the C2PA Content Authenticity Initiative (CAI) library" readme = { file = "README.md", content-type = "text/markdown" } diff --git a/tests/test_unit_tests.py b/tests/test_unit_tests.py index 4b294597..70b2d0ac 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.79.3", sdk_version()) + self.assertIn("0.79.5", sdk_version()) class TestReader(unittest.TestCase):