diff --git a/NEWS.rst b/NEWS.rst index 929c7c52..f48a285e 100644 --- a/NEWS.rst +++ b/NEWS.rst @@ -3,6 +3,32 @@ ====== +Version 0.4.4, released on 2012-07-05 +===================================== + +* Use a default font size of 12pt +* Fix a bug about non-invertible matrices +* Fix the installation for python 3 with LANG=C + + +Version 0.4.3, released on 2012-05-04 +===================================== + +* Fix the version detection without cairo + + +Version 0.4.2, released on 2012-05-04 +===================================== + +* Don't rely on cairo import to find the version + + +Version 0.4.1, released on 2012-04-25 +===================================== + +* Use cssselect + + Version 0.4, released on 2012-04-19 =================================== diff --git a/cairosvg/__init__.py b/cairosvg/__init__.py index d647ed6f..5556b412 100644 --- a/cairosvg/__init__.py +++ b/cairosvg/__init__.py @@ -27,7 +27,7 @@ from . import surface -VERSION = '0.4.3' +VERSION = '0.4.4' SURFACES = { 'SVG': surface.SVGSurface, # Tell us if you actually use this one! 'PNG': surface.PNGSurface,