Changelog and credit for #1358 #1362

This commit is contained in:
Lovell Fuller 2018-09-04 16:39:24 +01:00
parent 7d48a5ccf4
commit 374c6959d7
3 changed files with 18 additions and 4 deletions

View File

@ -4,6 +4,16 @@
Requires libvips v8.6.1. Requires libvips v8.6.1.
#### v0.20.8 - TBD
* Avoid race conditions when creating directories during installation.
[#1358](https://github.com/lovell/sharp/pull/1358)
[@ajhool](https://github.com/ajhool)
* Accept floating point values for input density parameter.
[#1362](https://github.com/lovell/sharp/pull/1362)
[@aeirola](https://github.com/aeirola)
#### v0.20.7 - 21<sup>st</sup> August 2018 #### v0.20.7 - 21<sup>st</sup> August 2018
* Use copy+unlink if rename operation fails during installation. * Use copy+unlink if rename operation fails during installation.

View File

@ -116,6 +116,8 @@ the help and code contributions of the following people:
* [Espen Hovlandsdal](https://github.com/rexxars) * [Espen Hovlandsdal](https://github.com/rexxars)
* [Sylvain Dumont](https://github.com/sylvaindumont) * [Sylvain Dumont](https://github.com/sylvaindumont)
* [Alun Davies](https://github.com/alundavies) * [Alun Davies](https://github.com/alundavies)
* [Aidan Hoolachan](https://github.com/ajhool)
* [Axel Eirola](https://github.com/aeirola)
Thank you! Thank you!

View File

@ -52,7 +52,9 @@
"Tom Lokhorst <tom@lokhorst.eu>", "Tom Lokhorst <tom@lokhorst.eu>",
"Espen Hovlandsdal <espen@hovlandsdal.com>", "Espen Hovlandsdal <espen@hovlandsdal.com>",
"Sylvain Dumont <sylvain.dumont35@gmail.com>", "Sylvain Dumont <sylvain.dumont35@gmail.com>",
"Alun Davies <alun.owain.davies@googlemail.com>" "Alun Davies <alun.owain.davies@googlemail.com>",
"Aidan Hoolachan <ajhoolachan21@gmail.com>",
"Axel Eirola <axel.eirola@iki.fi>"
], ],
"scripts": { "scripts": {
"install": "(node install/libvips && node install/dll-copy && prebuild-install) || (node-gyp rebuild && node install/dll-copy)", "install": "(node install/libvips && node install/dll-copy && prebuild-install) || (node-gyp rebuild && node install/dll-copy)",
@ -86,7 +88,7 @@
"dependencies": { "dependencies": {
"color": "^3.0.0", "color": "^3.0.0",
"detect-libc": "^1.0.3", "detect-libc": "^1.0.3",
"nan": "^2.10.0", "nan": "^2.11.0",
"fs-copy-file-sync": "^1.1.1", "fs-copy-file-sync": "^1.1.1",
"npmlog": "^4.1.2", "npmlog": "^4.1.2",
"prebuild-install": "^4.0.0", "prebuild-install": "^4.0.0",
@ -99,12 +101,12 @@
"async": "^2.6.1", "async": "^2.6.1",
"cc": "^1.0.2", "cc": "^1.0.2",
"decompress-zip": "^0.3.1", "decompress-zip": "^0.3.1",
"documentation": "^8.1.1", "documentation": "^8.1.2",
"exif-reader": "^1.0.2", "exif-reader": "^1.0.2",
"icc": "^1.0.0", "icc": "^1.0.0",
"mocha": "^5.2.0", "mocha": "^5.2.0",
"mock-fs": "^4.6.0", "mock-fs": "^4.6.0",
"nyc": "^12.0.2", "nyc": "^13.0.1",
"prebuild": "^7.6.2", "prebuild": "^7.6.2",
"prebuild-ci": "^2.2.3", "prebuild-ci": "^2.2.3",
"rimraf": "^2.6.2", "rimraf": "^2.6.2",