Skip to content

Commit 1a51e99

Browse files
committed
Upgrade to libvips v8.16.0-rc2
1 parent 466c843 commit 1a51e99

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,6 @@ set(CMAKE_CXX_EXTENSIONS OFF)
2929

3030
# Find libvips (required)
3131
find_package(PkgConfig)
32-
pkg_check_modules(VIPS vips>=8.15 REQUIRED)
32+
pkg_check_modules(VIPS vips>=8.16 REQUIRED)
3333

3434
add_subdirectory(src)

build.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ VERSION_TIFF=4.7.0 # https://gitlab.com/libtiff/libtiff
195195
VERSION_RESVG=0.44.0 # https://github.com/RazrFalcon/resvg
196196
VERSION_AOM=3.10.0 # https://aomedia.googlesource.com/aom
197197
VERSION_HEIF=1.18.2 # https://github.com/strukturag/libheif
198-
VERSION_VIPS=8.16.0-rc1 # https://github.com/libvips/libvips
198+
VERSION_VIPS=8.16.0-rc2 # https://github.com/libvips/libvips
199199

200200
VERSION_EMSCRIPTEN="$(emcc -dumpversion)"
201201

test/unit/node-helper.js

+1
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ export async function mochaGlobalSetup () {
2222
// Handy for debugging
2323
// module.ENV.VIPS_INFO = 1;
2424
// module.ENV.VIPS_LEAK = 1;
25+
// module.ENV.VIPS_CONCURRENCY = 1;
2526

2627
// Hide warning messages
2728
module.ENV.VIPS_WARNING = 0;

test/unit/test_foreign.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1047,8 +1047,8 @@ describe('foreign', () => {
10471047
}
10481048

10491049
// Chroma subsampling should produce smaller file size for same Q
1050-
const b1 = mono.heifsaveBuffer({ compression: 'av1', subsample_mode: 'on' });
1051-
const b2 = mono.heifsaveBuffer({ compression: 'av1', subsample_mode: 'off' });
1050+
const b1 = colour.heifsaveBuffer({ compression: 'av1', subsample_mode: 'on' });
1051+
const b2 = colour.heifsaveBuffer({ compression: 'av1', subsample_mode: 'off' });
10521052
expect(b2.byteLength).to.be.above(b1.byteLength);
10531053
});
10541054

0 commit comments

Comments
 (0)