From fdb5d6b2b170c883d6e776005e605fc8f81e3ee1 Mon Sep 17 00:00:00 2001 From: tmathern <60901087+tmathern@users.noreply.github.com> Date: Thu, 18 Sep 2025 19:19:41 -0700 Subject: [PATCH 1/4] fix: Bump version to c2pa C ffi v0.65.0 (#167) --- c2pa-native-version.txt | 2 +- tests/test_unit_tests.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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/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): From d3bb12c18d8f175475efcc7c193fef82c22403af Mon Sep 17 00:00:00 2001 From: tmathern <60901087+tmathern@users.noreply.github.com> Date: Thu, 18 Sep 2025 19:29:08 -0700 Subject: [PATCH 2/4] chore: Bump version number (#168) Prepare release for v0.23.0. --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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" } From 1fde83ca0ab2e28fc92a0c8d2165249cabcc54cd Mon Sep 17 00:00:00 2001 From: Tania Mathern Date: Fri, 19 Sep 2025 19:49:00 -0700 Subject: [PATCH 3/4] fix: Tag on release --- .github/workflows/publish-docs.yml | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/.github/workflows/publish-docs.yml b/.github/workflows/publish-docs.yml index 3c6c4f1a..55b6d28f 100644 --- a/.github/workflows/publish-docs.yml +++ b/.github/workflows/publish-docs.yml @@ -1,15 +1,9 @@ name: Build and publish docs on: - pull_request: - types: - - opened - - reopened - - synchronize - - labeled - push: - tags: '*' + tags: + - 'v*' workflow_dispatch: From 715d2bf9f5b46db68512b803d4d99ed99f233be1 Mon Sep 17 00:00:00 2001 From: Tania Mathern Date: Fri, 19 Sep 2025 19:50:07 -0700 Subject: [PATCH 4/4] fix: On release only --- .github/workflows/publish-docs.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/publish-docs.yml b/.github/workflows/publish-docs.yml index 55b6d28f..d3c3b427 100644 --- a/.github/workflows/publish-docs.yml +++ b/.github/workflows/publish-docs.yml @@ -1,9 +1,8 @@ name: Build and publish docs on: - push: - tags: - - 'v*' + release: + types: [published] workflow_dispatch: