Browse Source

Release 0.0.2

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

8
History.md

@ -1,4 +1,12 @@
0.0.2 / 2010-11-08
==================
* Added shadow support (faster/better gaussian blur to come)
* Added node v0.3 support [Don Park]
* Added -O3 to build
* Removed `Canvas#savePNG()` use `Canvas#createPNGStream()`
0.0.1 / 2010-11-04
==================

2
lib/canvas.js

@ -26,7 +26,7 @@ var Canvas = exports = module.exports = Canvas;
* Library version.
*/
exports.version = '0.0.1';
exports.version = '0.0.2';
/**
* Cairo version.

2
package.json

@ -1,6 +1,6 @@
{ "name": "canvas"
, "description": "Canvas graphics API backed by Cairo"
, "version": "0.0.1"
, "version": "0.0.2"
, "author": "TJ Holowaychuk <tj@learnboost.com>"
, "keywords": ["canvas", "graphic", "graphics"]
, "scripts": {

Loading…
Cancel
Save