Browse Source

Release 0.3.2

v1.x 0.3.2
Tj Holowaychuk 14 years ago
parent
commit
c4f8e42ff0
  1. 11
      History.md
  2. 2
      lib/canvas.js
  3. 2
      package.json

11
History.md

@ -1,4 +1,15 @@
0.3.2 / 2010-11-26
==================
* Added --profile option to config
* Fixed `eio_custom` segfault(s). Closes #46
* Fixed two named colors. Closes #62 [thanks noonat]
* Fixed a few warnings
* Fixed; freeing data in `Image::loadJPEG()` on failure
* Fixed; include _jpeglib_ only when __HAVE_JPEG__
* Fixed; using `strstr()` instead of `strnstr()`
0.3.1 / 2010-11-24
==================

2
lib/canvas.js

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

2
package.json

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

Loading…
Cancel
Save