From c227300a6f70ea94f29729481b3ad69b656cd36d Mon Sep 17 00:00:00 2001 From: Tj Holowaychuk Date: Fri, 19 Nov 2010 13:57:26 -0800 Subject: [PATCH] Release 0.2.1 --- History.md | 8 ++++++++ lib/canvas.js | 2 +- package.json | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/History.md b/History.md index d7acae3..a8b67f8 100644 --- a/History.md +++ b/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 ================== diff --git a/lib/canvas.js b/lib/canvas.js index adcb393..c25acd9 100644 --- a/lib/canvas.js +++ b/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. diff --git a/package.json b/package.json index 97c082b..f97119b 100644 --- a/package.json +++ b/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 " , "keywords": ["canvas", "graphic", "graphics"] , "scripts": {