Browse Source

Release 0.6.0

v1.x 0.6.0
Tj Holowaychuk 14 years ago
parent
commit
5e3af66268
  1. 10
      History.md
  2. 2
      lib/canvas.js
  3. 2
      package.json

10
History.md

@ -1,4 +1,14 @@
0.6.0 / 2011-06-04
==================
* Added `Image#src=Buffer` support. Closes #91
* Added `devDependencies`
* Added `source-atop` test
* Added _image-src.js_ example
* Removed `V8::AdjustAmountOfExternalAllocatedMemory()` call from `toBuffer()`
* Fixed v8 memory hint when resizing canvas [atomizer]
0.5.4 / 2011-04-20
==================

2
lib/canvas.js

@ -28,7 +28,7 @@ var Canvas = exports = module.exports = Canvas;
* Library version.
*/
exports.version = '0.5.4';
exports.version = '0.6.0';
/**
* Cairo version.

2
package.json

@ -1,6 +1,6 @@
{ "name": "canvas"
, "description": "Canvas graphics API backed by Cairo"
, "version": "0.5.4"
, "version": "0.6.0"
, "author": "TJ Holowaychuk <tj@learnboost.com>"
, "keywords": ["canvas", "graphic", "graphics", "pixman", "cairo"]
, "repository": "git://github.com/learnboost/node-canvas"

Loading…
Cancel
Save