diff --git a/.github/workflows/publish-docs.yml b/.github/workflows/publish-docs.yml index 3c6c4f1a..d3c3b427 100644 --- a/.github/workflows/publish-docs.yml +++ b/.github/workflows/publish-docs.yml @@ -1,15 +1,8 @@ name: Build and publish docs on: - pull_request: - types: - - opened - - reopened - - synchronize - - labeled - - push: - tags: '*' + release: + types: [published] workflow_dispatch: diff --git a/c2pa-native-version.txt b/c2pa-native-version.txt index a0eb3636..3979be47 100644 --- a/c2pa-native-version.txt +++ b/c2pa-native-version.txt @@ -1 +1 @@ -c2pa-v0.64.0 +c2pa-v0.65.0 diff --git a/pyproject.toml b/pyproject.toml index 98b7ae53..45d0e3d4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "c2pa-python" -version = "0.22.0" +version = "0.23.0" 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 d0505b48..0a35a70d 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.64.0", sdk_version()) + self.assertIn("0.65.0", sdk_version()) class TestReader(unittest.TestCase):