diff --git a/History.md b/History.md index 5a07b59..e7b3ffe 100644 --- a/History.md +++ b/History.md @@ -1,4 +1,11 @@ +0.3.3 / 2010-11-30 +================== + + * Added `CanvasRenderingContext2d#patternQuality` accessor, accepting _fast_, _good_, and _best_ + * Fixed; pre-multiply `putImageData()` components + * Fixed; `PixelArray` data is not premultiplied + 0.3.2 / 2010-11-26 ================== diff --git a/lib/canvas.js b/lib/canvas.js index baff0e6..79329c7 100644 --- a/lib/canvas.js +++ b/lib/canvas.js @@ -28,7 +28,7 @@ var Canvas = exports = module.exports = Canvas; * Library version. */ -exports.version = '0.3.2'; +exports.version = '0.3.3'; /** * Cairo version. diff --git a/package.json b/package.json index 01cecdc..09a70ba 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "canvas" , "description": "Canvas graphics API backed by Cairo" - , "version": "0.3.2" + , "version": "0.3.3" , "author": "TJ Holowaychuk " , "keywords": ["canvas", "graphic", "graphics"] , "scripts": {