Version bumps and changelog for v0.11.4

This commit is contained in:
Lovell Fuller 2015-11-05 21:36:44 +00:00
parent 26fb75bf3f
commit 9f59a2aebf
4 changed files with 26 additions and 11 deletions

View File

@ -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`. `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 ```javascript
var transformer = sharp() var transformer = sharp()

View File

@ -2,6 +2,20 @@
### v0.11 - "*knife*" ### v0.11 - "*knife*"
#### v0.11.4 - 5<sup>th</sup> 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 - 8<sup>th</sup> September 2015 #### v0.11.3 - 8<sup>th</sup> September 2015
* Intrepret blurSigma, sharpenFlat, and sharpenJagged as double precision. * Intrepret blurSigma, sharpenFlat, and sharpenJagged as double precision.

View File

@ -7,8 +7,8 @@ npm install sharp
### Prerequisites ### Prerequisites
* Node.js v0.10+ or io.js * Node.js v0.10+ or io.js
* [libvips](https://github.com/jcupitt/libvips) v7.40.0+ (7.42.0+ recommended) * [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 (io.js v3+ requires gcc 4.8+) * C++11 compatible compiler such as gcc 4.6+, clang 3.0+ or MSVC 2013 (Node v4+ requires gcc 4.8+)
### Linux ### Linux

View File

@ -1,6 +1,6 @@
{ {
"name": "sharp", "name": "sharp",
"version": "0.11.3", "version": "0.11.4",
"author": "Lovell Fuller <npm@lovell.info>", "author": "Lovell Fuller <npm@lovell.info>",
"contributors": [ "contributors": [
"Pierre Inglebert <pierre.inglebert@gmail.com>", "Pierre Inglebert <pierre.inglebert@gmail.com>",
@ -46,19 +46,19 @@
"vips" "vips"
], ],
"dependencies": { "dependencies": {
"bluebird": "^2.9.34", "bluebird": "^3.0.5",
"color": "^0.10.1", "color": "^0.10.1",
"nan": "^2.0.8", "nan": "^2.1.0",
"semver": "^5.0.1" "semver": "^5.0.3"
}, },
"devDependencies": { "devDependencies": {
"async": "^1.4.2", "async": "^1.5.0",
"coveralls": "^2.11.4", "coveralls": "^2.11.4",
"exif-reader": "1.0.0", "exif-reader": "1.0.0",
"icc": "^0.0.2", "icc": "^0.0.2",
"istanbul": "^0.3.19", "istanbul": "^0.4.0",
"mocha": "^2.3.2", "mocha": "^2.3.3",
"mocha-jshint": "^2.2.3", "mocha-jshint": "^2.2.5",
"node-cpplint": "^0.4.0", "node-cpplint": "^0.4.0",
"rimraf": "^2.4.3", "rimraf": "^2.4.3",
"bufferutil": "^1.2.1" "bufferutil": "^1.2.1"