From e2cd4182a482d77bac8a75fc33fd394c6b5f9a61 Mon Sep 17 00:00:00 2001 From: Tj Holowaychuk Date: Thu, 18 Nov 2010 15:11:18 -0800 Subject: [PATCH] Release 0.2.0 --- History.md | 6 ++++++ lib/canvas.js | 2 +- package.json | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/History.md b/History.md index 3e5fba9..d7acae3 100644 --- a/History.md +++ b/History.md @@ -1,4 +1,10 @@ +0.2.0 / 2010-11-18 +================== + + * Added jpeg `Image` support (when libjpeg is available) + * Added _hsl_ / _hsla_ color support. [Tom Carden] + 0.1.0 / 2010-11-17 ================== diff --git a/lib/canvas.js b/lib/canvas.js index 8ee2b2a..cc2f659 100644 --- a/lib/canvas.js +++ b/lib/canvas.js @@ -28,7 +28,7 @@ var Canvas = exports = module.exports = Canvas; * Library version. */ -exports.version = '0.1.0'; +exports.version = '0.2.0'; /** * Cairo version. diff --git a/package.json b/package.json index 177887a..97c082b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "canvas" , "description": "Canvas graphics API backed by Cairo" - , "version": "0.1.0" + , "version": "0.2.0" , "author": "TJ Holowaychuk " , "keywords": ["canvas", "graphic", "graphics"] , "scripts": {