diff --git a/docs/conf.py b/docs/conf.py index 74bc950..f6d36cb 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -48,9 +48,9 @@ copyright = u'2012, Simon Conseil' # built documents. # # The short X.Y version. -version = '0.3' +version = '0.3.1' # The full version, including alpha/beta/rc tags. -release = '0.3' +release = '0.3.1' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/docs/index.rst b/docs/index.rst index 6cbba19..90a5cff 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -15,6 +15,9 @@ The idea behind Sigal is to ease the use of the javascript librairies like `galleria`_. These librairies do a great job to display the images, Sigal does what is missing: resize images, create thumbnails, generate html pages. +Sigal is currently compatible only with python 2. It will be ported to python +3 when PIL/Pillow will be available for python 3. + Links : * Latest documentation on the `website`_ @@ -150,13 +153,22 @@ the first image of the directory is used as thumbnail. .. _markdown: http://daringfireball.net/projects/markdown/ + Changelog --------- +Version 0.3.1 +~~~~~~~~~~~~~ + +Released on 2013-03-11. + +- Fix the path of the sample config file (which was not included in the + previous release). + Version 0.3 ~~~~~~~~~~~ -Released on 2013-xx-xx. +Released on 2013-03-04. - Fix packaging issues. - New setting ``index_in_url`` to optionally add `index.html` to the URLs. diff --git a/setup.py b/setup.py index 3a71891..f51c5fa 100644 --- a/setup.py +++ b/setup.py @@ -18,7 +18,7 @@ with open('README.rst') as f: setup( name='sigal', - version='0.3', + version='0.3.1', url='https://github.com/saimn/sigal', license='MIT', author='Simon Conseil', diff --git a/sigal/__init__.py b/sigal/__init__.py index 3108863..fbe9ddc 100644 --- a/sigal/__init__.py +++ b/sigal/__init__.py @@ -33,7 +33,7 @@ sigal is yet another python script to prepare a static gallery of images: from __future__ import absolute_import __author__ = "Simon Conseil" -__version__ = "0.3" +__version__ = "0.3.1" __license__ = "MIT" import codecs