@revizly/sharp 0.33.6-revizly1 → 0.33.6-revizly2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2) hide show
  1. package/package.json +4 -4
  2. package/src/common.h +3 -3
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@revizly/sharp",
3
3
  "description": "High performance Node.js image processing, the fastest module to resize JPEG, PNG, WebP, GIF, AVIF and TIFF images",
4
- "version": "0.33.6-revizly1",
4
+ "version": "0.33.6-revizly2",
5
5
  "author": "Lovell Fuller <npm@lovell.info>",
6
6
  "homepage": "https://sharp.pixelplumbing.com",
7
7
  "contributors": [
@@ -144,8 +144,8 @@
144
144
  "optionalDependencies": {
145
145
  "@revizly/sharp-libvips-linux-arm64": "1.0.9",
146
146
  "@revizly/sharp-libvips-linux-x64": "1.0.9",
147
- "@revizly/sharp-linux-arm64": "0.33.5-revizly1",
148
- "@revizly/sharp-linux-x64": "0.33.5-revizly1"
147
+ "@revizly/sharp-linux-arm64": "0.33.6-revizly1",
148
+ "@revizly/sharp-linux-x64": "0.33.6-revizly1"
149
149
  },
150
150
  "devDependencies": {
151
151
  "@emnapi/runtime": "^1.2.0",
@@ -171,7 +171,7 @@
171
171
  "node": "^18.17.0 || ^20.3.0 || >=21.0.0"
172
172
  },
173
173
  "config": {
174
- "libvips": ">=8.15.5"
174
+ "libvips": ">=8.16.0"
175
175
  },
176
176
  "funding": {
177
177
  "url": "https://opencollective.com/libvips"
package/src/common.h CHANGED
@@ -15,9 +15,9 @@
15
15
  // Verify platform and compiler compatibility
16
16
 
17
17
  #if (VIPS_MAJOR_VERSION < 8) || \
18
- (VIPS_MAJOR_VERSION == 8 && VIPS_MINOR_VERSION < 15) || \
19
- (VIPS_MAJOR_VERSION == 8 && VIPS_MINOR_VERSION == 15 && VIPS_MICRO_VERSION < 5)
20
- #error "libvips version 8.15.5+ is required - please see https://sharp.pixelplumbing.com/install"
18
+ (VIPS_MAJOR_VERSION == 8 && VIPS_MINOR_VERSION < 16) || \
19
+ (VIPS_MAJOR_VERSION == 8 && VIPS_MINOR_VERSION == 16 && VIPS_MICRO_VERSION < 0)
20
+ #error "libvips version 8.16.0+ is required - please see https://sharp.pixelplumbing.com/install"
21
21
  #endif
22
22
 
23
23
  #if ((!defined(__clang__)) && defined(__GNUC__) && (__GNUC__ < 4 || (__GNUC__ == 4 && __GNUC_MINOR__ < 6)))