Release v0.19.0

This commit is contained in:
Lovell Fuller 2018-01-11 22:31:51 +00:00
parent 8fca89e876
commit da5deb8177
3 changed files with 4 additions and 4 deletions

View File

@ -2,9 +2,9 @@
### v0.19 - "*suit*" ### v0.19 - "*suit*"
Requires libvips v8.6.0. Requires libvips v8.6.1.
#### v0.19.0 - TBD #### v0.19.0 - 11<sup>th</sup> January 2018
* Expose offset coordinates of strategy-based crop. * Expose offset coordinates of strategy-based crop.
[#868](https://github.com/lovell/sharp/issues/868) [#868](https://github.com/lovell/sharp/issues/868)

View File

@ -1,7 +1,7 @@
{ {
"name": "sharp", "name": "sharp",
"description": "High performance Node.js image processing, the fastest module to resize JPEG, PNG, WebP and TIFF images", "description": "High performance Node.js image processing, the fastest module to resize JPEG, PNG, WebP and TIFF images",
"version": "0.19.0-alpha", "version": "0.19.0",
"author": "Lovell Fuller <npm@lovell.info>", "author": "Lovell Fuller <npm@lovell.info>",
"homepage": "https://github.com/lovell/sharp", "homepage": "https://github.com/lovell/sharp",
"contributors": [ "contributors": [

View File

@ -26,7 +26,7 @@
// Verify platform and compiler compatibility // Verify platform and compiler compatibility
#if (VIPS_MAJOR_VERSION < 8 || (VIPS_MAJOR_VERSION == 8 && VIPS_MINOR_VERSION < 6)) #if (VIPS_MAJOR_VERSION < 8 || (VIPS_MAJOR_VERSION == 8 && VIPS_MINOR_VERSION < 6))
#error libvips version 8.6.x required - see sharp.dimens.io/page/install #error libvips version 8.6.1+ is required - see sharp.pixelplumbing.com/page/install
#endif #endif
#if ((!defined(__clang__)) && defined(__GNUC__) && (__GNUC__ < 4 || (__GNUC__ == 4 && __GNUC_MINOR__ < 6))) #if ((!defined(__clang__)) && defined(__GNUC__) && (__GNUC__ < 4 || (__GNUC__ == 4 && __GNUC_MINOR__ < 6)))