diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f6f964b1..ae96dcf7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -35,8 +35,14 @@ jobs: - name: Checkout repository uses: actions/checkout@v4 - - name: Install Ninja (Cmake build generator) - uses: seanmiddleditch/gha-setup-ninja@master + - name: Check cmake + run: cmake --version + + - 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' diff --git a/CMakeLists.txt b/CMakeLists.txt index c001d0e0..e3950bfd 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)