From 4a9064fa924f260149c06da1d987e354843a8017 Mon Sep 17 00:00:00 2001 From: Larry Gritz Date: Sun, 28 Dec 2025 17:00:28 -0800 Subject: [PATCH] deps: Test against libraw 0.21.5 Signed-off-by: Larry Gritz --- .github/workflows/ci.yml | 8 ++++---- INSTALL.md | 2 +- src/build-scripts/build_libraw.bash | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index eeba96601d..31d7e647ea 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -460,7 +460,7 @@ jobs: simd: avx2,f16c setenvs: export LIBJPEGTURBO_VERSION=3.1.2 LIBPNG_VERSION=v1.6.50 - LIBRAW_VERSION=0.21.4 + LIBRAW_VERSION=0.21.5 LIBTIFF_VERSION=v4.7.1 OPENJPEG_VERSION=v2.5.4 PTEX_VERSION=v2.5.0 @@ -513,7 +513,7 @@ jobs: simd: avx2,f16c setenvs: export OpenImageIO_BUILD_LOCAL_DEPS=all OpenImageIO_DEPENDENCY_BUILD_VERBOSE=ON - LIBRAW_VERSION=0.21.4 + LIBRAW_VERSION=0.21.5 PTEX_VERSION=v2.4.2 PUGIXML_VERSION=v1.14 WEBP_VERSION=v1.4.0 @@ -543,7 +543,7 @@ jobs: python_ver: "3.12" setenvs: export LIBJPEGTURBO_VERSION=3.1.2 LIBPNG_VERSION=v1.6.50 - LIBRAW_VERSION=0.21.4 + LIBRAW_VERSION=0.21.5 LIBTIFF_VERSION=v4.7.1 OPENJPEG_VERSION=v2.5.4 PTEX_VERSION=v2.4.3 @@ -564,7 +564,7 @@ jobs: python_ver: "3.12" setenvs: export LIBJPEGTURBO_VERSION=3.1.2 LIBPNG_VERSION=v1.6.50 - LIBRAW_VERSION=0.21.4 + LIBRAW_VERSION=0.21.5 LIBTIFF_VERSION=v4.7.1 OPENJPEG_VERSION=v2.5.4 PTEX_VERSION=v2.4.3 diff --git a/INSTALL.md b/INSTALL.md index 68d69aa67e..becea32e95 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -47,7 +47,7 @@ NEW or CHANGED MINIMUM dependencies since the last major release are **bold**. * If you want support for PNG files: * libPNG >= 1.6.0 (tested though 1.6.50) * If you want support for camera "RAW" formats: - * LibRaw >= 0.20 (tested though 0.21.4 and master) + * LibRaw >= 0.20 (tested though 0.21.5 and master) * If you want support for a wide variety of video formats: * ffmpeg >= 4.0 (tested through 8.0) * If you want support for jpeg 2000 images: diff --git a/src/build-scripts/build_libraw.bash b/src/build-scripts/build_libraw.bash index b5114d3aab..2b4b3bef92 100755 --- a/src/build-scripts/build_libraw.bash +++ b/src/build-scripts/build_libraw.bash @@ -11,7 +11,7 @@ set -ex # Which LibRaw to retrieve, how to build it LIBRAW_REPO=${LIBRAW_REPO:=https://github.com/LibRaw/LibRaw.git} -LIBRAW_VERSION=${LIBRAW_VERSION:=0.21.4} +LIBRAW_VERSION=${LIBRAW_VERSION:=0.21.5} # Where to install the final results LOCAL_DEPS_DIR=${LOCAL_DEPS_DIR:=${PWD}/ext}