diff --git a/docs/changelog.md b/docs/changelog.md index 63385ca5..88c707d1 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -2,7 +2,7 @@ ## v0.29 - *circle* -Requires libvips v8.11.2 +Requires libvips v8.11.3 ### v0.29.0 - TBD diff --git a/package.json b/package.json index c67ac6bb..b529372f 100644 --- a/package.json +++ b/package.json @@ -148,7 +148,7 @@ }, "license": "Apache-2.0", "config": { - "libvips": "8.11.2-alpha1", + "libvips": "8.11.3-alpha1", "runtime": "napi", "target": 5 }, diff --git a/src/common.h b/src/common.h index 4d2d753f..03ecf67e 100644 --- a/src/common.h +++ b/src/common.h @@ -26,8 +26,8 @@ #if (VIPS_MAJOR_VERSION < 8) || \ (VIPS_MAJOR_VERSION == 8 && VIPS_MINOR_VERSION < 11) || \ - (VIPS_MAJOR_VERSION == 8 && VIPS_MINOR_VERSION == 11 && VIPS_MICRO_VERSION < 2) -#error "libvips version 8.11.2+ is required - please see https://sharp.pixelplumbing.com/install" + (VIPS_MAJOR_VERSION == 8 && VIPS_MINOR_VERSION == 11 && VIPS_MICRO_VERSION < 3) +#error "libvips version 8.11.3+ is required - please see https://sharp.pixelplumbing.com/install" #endif #if ((!defined(__clang__)) && defined(__GNUC__) && (__GNUC__ < 4 || (__GNUC__ == 4 && __GNUC_MINOR__ < 6)))