diff --git a/History.md b/History.md index 644921a..c91b479 100644 --- a/History.md +++ b/History.md @@ -1,3 +1,17 @@ + +1.1.5 / 2014-06-26 +================== + + * Readme: remove Contributors section + * Readme: update copyright + * On Windows, copy required DLLs next to ".node" file (#442 @pandell) + * Duplicate "msvc_settings" for "Debug" configuration + * Remove unneeded #include + * Use float constants to prevent double->float conversion warning + * Ignore Visual C++ 2013 warnings (#441 @pandell) + * Add algorithm include to CanvasRenderingContext2d.cc for std::min (#435 @kkoopa) + * Updated NAN to 1.2.0 (#434 @kkoopa) + 1.1.4 / 2014-06-08 ================== diff --git a/package.json b/package.json index b22100d..de54c24 100644 --- a/package.json +++ b/package.json @@ -1,27 +1,39 @@ -{ "name": "canvas" - , "description": "Canvas graphics API backed by Cairo" - , "version": "1.1.4" - , "author": "TJ Holowaychuk " - , "contributors": [ - "Nathan Rajlich " - , "Rod Vagg " - , "Juriy Zaytsev " - ] - , "keywords": ["canvas", "graphic", "graphics", "pixman", "cairo", "image", "images", "pdf"] - , "homepage": "https://github.com/learnboost/node-canvas" - , "repository": "git://github.com/learnboost/node-canvas" - , "scripts": { - "test": "make test" - } - , "dependencies": { - "nan": "~1.2.0" - } - , "devDependencies": { - "express": "3.0" - , "jade": "0.28.1" - , "mocha": "*" - , "should": "*" - } - , "engines": { "node": ">= 0.6.0" } - , "main": "./lib/canvas.js" +{ + "name": "canvas", + "description": "Canvas graphics API backed by Cairo", + "version": "1.1.5", + "author": "TJ Holowaychuk ", + "contributors": [ + "Nathan Rajlich ", + "Rod Vagg ", + "Juriy Zaytsev " + ], + "keywords": [ + "canvas", + "graphic", + "graphics", + "pixman", + "cairo", + "image", + "images", + "pdf" + ], + "homepage": "https://github.com/learnboost/node-canvas", + "repository": "git://github.com/learnboost/node-canvas", + "scripts": { + "test": "make test" + }, + "dependencies": { + "nan": "~1.2.0" + }, + "devDependencies": { + "express": "3.0", + "jade": "0.28.1", + "mocha": "*", + "should": "*" + }, + "engines": { + "node": ">= 0.6.0" + }, + "main": "./lib/canvas.js" }