Browse Source

Release 0.5.4

v1.x 0.5.4
Tj Holowaychuk 14 years ago
parent
commit
b9ecfe990e
  1. 8
      History.md
  2. 2
      lib/canvas.js
  3. 2
      package.json

8
History.md

@ -1,4 +1,12 @@
0.5.4 / 2011-04-20
==================
* Added; special case of zero-width rectangle [atomizer]
* Fixed; do not clamp arguments to integer values [atomizer]
* Fixed; preserve current path during `fillRect()` and `strokeRect()` [atomizer]
* Fixed; `restorePath()`: clear current path before appending [atomizer]
0.5.3 / 2011-04-11
==================

2
lib/canvas.js

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

2
package.json

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

Loading…
Cancel
Save