Browse Source

Release 0.2.1

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

8
History.md

@ -1,4 +1,12 @@
0.2.1 / 2010-11-19
==================
* Added image _resize_ example
* Fixed canvas resizing via `{width,height}=`. Closes #57
* Fixed `Canvas#getContext()`, caching the CanvasRenderingContext
* Fixed async image loading (test server still messed)
0.2.0 / 2010-11-18
==================

2
lib/canvas.js

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

2
package.json

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

Loading…
Cancel
Save