diff --git a/docs/index.rst b/docs/index.rst index 90a5cff..fb5ee13 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -157,6 +157,16 @@ the first image of the directory is used as thumbnail. Changelog --------- +Version 0.3.2 +~~~~~~~~~~~~~ + +Released on 2013-03-14. + +- Bugfix for PNG files which don't have exif metadata. +- Move unit tests to py.test. +- Fix images path in colorbox theme. +- Group package meta in a module. + Version 0.3.1 ~~~~~~~~~~~~~ diff --git a/sigal/pkgmeta.py b/sigal/pkgmeta.py index 4f1ccb0..701e183 100644 --- a/sigal/pkgmeta.py +++ b/sigal/pkgmeta.py @@ -2,7 +2,7 @@ __title__ = 'sigal' __author__ = u"Simon Conseil" -__version__ = "0.3.1-dev" +__version__ = "0.3.2" __license__ = "MIT" __url__ = 'https://github.com/saimn/sigal' __all__ = ['__title__', '__author__', '__version__', '__license__', '__url__']