Browse Source

Release 0.8.1

v1.x 0.8.1
Tj Holowaychuk 13 years ago
parent
commit
a3f65a3914
  1. 6
      History.md
  2. 2
      lib/canvas.js
  3. 4
      package.json

6
History.md

@ -1,4 +1,10 @@
0.8.1 / 2011-10-31
==================
* Added 0.5.x support [TooTallNate]
* Fixed `measureText().width`. Closes #126
0.8.0 / 2011-10-28
==================

2
lib/canvas.js

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

4
package.json

@ -1,6 +1,6 @@
{ "name": "canvas"
, "description": "Canvas graphics API backed by Cairo"
, "version": "0.8.0"
, "version": "0.8.1"
, "author": "TJ Holowaychuk <tj@learnboost.com>"
, "keywords": ["canvas", "graphic", "graphics", "pixman", "cairo"]
, "repository": "git://github.com/learnboost/node-canvas"
@ -12,6 +12,6 @@
, "expresso": "0.7.6"
, "jade": "0.11.0"
}
, "engines": { "node": ">= 0.4.0 && < 0.6.0" }
, "engines": { "node": ">= 0.4.0 && < 0.7.0" }
, "main": "./lib/canvas.js"
}
Loading…
Cancel
Save