diff --git a/History.md b/History.md index 06744ec03..15c6476e0 100644 --- a/History.md +++ b/History.md @@ -1,4 +1,12 @@ +0.10.1 / 2012-01-31 +================== + + * Added _/opt/local/lib_ to wscript [obarthel] + * Added bounds checking to `rgba_to_string()` [obarthel] + * Fixed cleanup in JPEG Image loading [obarthel] + * Fixed missing CSS color table values [obarthel] + 0.10.0 / 2012-01-18 ================== diff --git a/lib/canvas.js b/lib/canvas.js index 9729afbe5..87e458b69 100644 --- a/lib/canvas.js +++ b/lib/canvas.js @@ -29,7 +29,7 @@ var Canvas = exports = module.exports = Canvas; * Library version. */ -exports.version = '0.10.0'; +exports.version = '0.10.1'; /** * Cairo version. diff --git a/package.json b/package.json index 769674ef4..497a71255 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "canvas" , "description": "Canvas graphics API backed by Cairo" - , "version": "0.10.0" + , "version": "0.10.1" , "author": "TJ Holowaychuk " , "keywords": ["canvas", "graphic", "graphics", "pixman", "cairo", "image", "images"] , "homepage": "https://github.com/learnboost/node-canvas"