From 13c1a62efe89503a41d8885492315f8dd3babda3 Mon Sep 17 00:00:00 2001 From: tmathern <60901087+tmathern@users.noreply.github.com> Date: Wed, 12 Aug 2026 13:03:27 -0700 Subject: [PATCH 1/3] Bump to c2pa-rs v0.90.12 https://github.com/contentauth/c2pa-rs/releases/tag/c2pa-v0.90.12 --- CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index c001d0e..e3950bf 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -14,10 +14,10 @@ cmake_minimum_required(VERSION 3.27) # This is the current version of this C++ project -project(c2pa-c VERSION 0.26.6) +project(c2pa-c VERSION 0.26.7) # Set the version of the c2pa_rs library used -set(C2PA_VERSION "0.90.10") +set(C2PA_VERSION "0.90.12") set(CMAKE_POLICY_DEFAULT_CMP0135 NEW) set(CMAKE_C_STANDARD 17) From e4a86254d814aea8f4dc38e45de07eb693ad8e68 Mon Sep 17 00:00:00 2001 From: tmathern <60901087+tmathern@users.noreply.github.com> Date: Wed, 12 Aug 2026 13:12:55 -0700 Subject: [PATCH 2/3] fix: Ninja blip --- .github/workflows/ci.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f6f964b..13746fd 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -35,8 +35,11 @@ jobs: - name: Checkout repository uses: actions/checkout@v4 - - name: Install Ninja (Cmake build generator) - uses: seanmiddleditch/gha-setup-ninja@master + - name: Check Ninja + run: ninja --version + + - name: Configure + run: cmake -S . -B build -G Ninja - name: Setup MSVC toolchain on Windows if: matrix.os == 'windows-latest' From c4df4b2570d7dd56f22141882d8990a819187f48 Mon Sep 17 00:00:00 2001 From: tmathern <60901087+tmathern@users.noreply.github.com> Date: Wed, 12 Aug 2026 13:16:11 -0700 Subject: [PATCH 3/3] Add CMake version check step Add step to check CMake version in CI workflow --- .github/workflows/ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 13746fd..ae96dcf 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -35,6 +35,9 @@ jobs: - name: Checkout repository uses: actions/checkout@v4 + - name: Check cmake + run: cmake --version + - name: Check Ninja run: ninja --version