From 9f59a2aebf54c4cc0f1f3e96d530636f0f88ec3b Mon Sep 17 00:00:00 2001 From: Lovell Fuller Date: Thu, 5 Nov 2015 21:36:44 +0000 Subject: [PATCH] Version bumps and changelog for v0.11.4 --- docs/api.md | 3 ++- docs/changelog.md | 14 ++++++++++++++ docs/install.md | 4 ++-- package.json | 16 ++++++++-------- 4 files changed, 26 insertions(+), 11 deletions(-) diff --git a/docs/api.md b/docs/api.md index 878c98a5..e0f06a15 100644 --- a/docs/api.md +++ b/docs/api.md @@ -111,7 +111,8 @@ Crop the resized image to the exact size specified, the default behaviour. `gravity`, if present, is a String or an attribute of the `sharp.gravity` Object e.g. `sharp.gravity.north`. -Possible values are `north`, `east`, `south`, `west`, `center` and `centre`. The default gravity is `center`/`centre`. +Possible values are `north`, `northeast`, `east`, `southeast`, `south`, `southwest`, `west`, `northwest`, `center` and `centre`. +The default gravity is `center`/`centre`. ```javascript var transformer = sharp() diff --git a/docs/changelog.md b/docs/changelog.md index 8992ce42..35a6f871 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -2,6 +2,20 @@ ### v0.11 - "*knife*" +#### v0.11.4 - 5th November 2015 + +* Add corners, e.g. `northeast`, to existing `gravity` option. + [#291](https://github.com/lovell/sharp/pull/291) + [@brandonaaron](https://github.com/brandonaaron) + +* Ensure correct auto-rotation for EXIF Orientation values 2 and 4. + [#288](https://github.com/lovell/sharp/pull/288) + [@brandonaaron](https://github.com/brandonaaron) + +* Make static linking possible via `--runtime_link` install option. + [#287](https://github.com/lovell/sharp/pull/287) + [@vlapo](https://github.com/vlapo) + #### v0.11.3 - 8th September 2015 * Intrepret blurSigma, sharpenFlat, and sharpenJagged as double precision. diff --git a/docs/install.md b/docs/install.md index 2dbe635a..c808c55e 100644 --- a/docs/install.md +++ b/docs/install.md @@ -7,8 +7,8 @@ npm install sharp ### Prerequisites * Node.js v0.10+ or io.js -* [libvips](https://github.com/jcupitt/libvips) v7.40.0+ (7.42.0+ recommended) -* C++11 compatible compiler such as gcc 4.6+, clang 3.0+ or MSVC 2013 (io.js v3+ requires gcc 4.8+) +* [libvips](https://github.com/jcupitt/libvips) v7.40.0+ (8.1.1+ recommended) +* C++11 compatible compiler such as gcc 4.6+, clang 3.0+ or MSVC 2013 (Node v4+ requires gcc 4.8+) ### Linux diff --git a/package.json b/package.json index 1e49c32e..ac1a52b3 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "sharp", - "version": "0.11.3", + "version": "0.11.4", "author": "Lovell Fuller ", "contributors": [ "Pierre Inglebert ", @@ -46,19 +46,19 @@ "vips" ], "dependencies": { - "bluebird": "^2.9.34", + "bluebird": "^3.0.5", "color": "^0.10.1", - "nan": "^2.0.8", - "semver": "^5.0.1" + "nan": "^2.1.0", + "semver": "^5.0.3" }, "devDependencies": { - "async": "^1.4.2", + "async": "^1.5.0", "coveralls": "^2.11.4", "exif-reader": "1.0.0", "icc": "^0.0.2", - "istanbul": "^0.3.19", - "mocha": "^2.3.2", - "mocha-jshint": "^2.2.3", + "istanbul": "^0.4.0", + "mocha": "^2.3.3", + "mocha-jshint": "^2.2.5", "node-cpplint": "^0.4.0", "rimraf": "^2.4.3", "bufferutil": "^1.2.1"