From 894f7d6522441a63e6fc230a445df0e770375b99 Mon Sep 17 00:00:00 2001 From: Simon Conseil Date: Sun, 24 Apr 2016 23:05:23 +0200 Subject: [PATCH] Bump version 1.1.0 --- docs/changelog.rst | 14 +++++++------- setup.py | 1 + sigal/pkgmeta.py | 2 +- 3 files changed, 9 insertions(+), 8 deletions(-) diff --git a/docs/changelog.rst b/docs/changelog.rst index 23540a60..df7dcf37 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -2,22 +2,22 @@ Changelog =========== -Version 1.1.dev -~~~~~~~~~~~~~~~ +Version 1.1.0 +~~~~~~~~~~~~~ -Released on 2016-xx-xx. +Released on 2016-04-24. - Add GIF support [#185]. - Add a feeds plugin [#98]. - Implement album sorting [#192]. -- Enable autoescape in jinja templates [#195]. +- Enable autoescape in Jinja templates [#195]. - Raise exceptions in debug mode (``--debug``). - Fix unicode bug with special characters in path names. - Better representation for exposure time fraction [#187]. -- Catch cPickle.PicklingError on python 2 [#191]. -- Fix ZeroDivisionError when ExposureTime contains null values [#193]. +- Catch ``cPickle.PicklingError`` on python 2 [#191]. +- Fix ``ZeroDivisionError`` when ExposureTime contains null values [#193]. - Fix hard-coded video mime-type in the galleria theme [#196]. -- Update theme librairies: colorbox 1.6.3, jQuery 2.2.1, touchSwipe 1.6.15, +- Update theme libraries: colorbox 1.6.3, jQuery 2.2.1, touchSwipe 1.6.15, photoswipe 4.1.1 - Galleria: always show fullscreen icon, replace fullscreen and map icons. - Use https for external resources, remove html5shiv. diff --git a/setup.py b/setup.py index b23b593a..29732658 100644 --- a/setup.py +++ b/setup.py @@ -50,6 +50,7 @@ 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.3', 'Programming Language :: Python :: 3.4', + 'Programming Language :: Python :: 3.5', 'Topic :: Internet :: WWW/HTTP', 'Topic :: Multimedia :: Graphics :: Viewers', 'Topic :: Software Development :: Libraries :: Python Modules', diff --git a/sigal/pkgmeta.py b/sigal/pkgmeta.py index 4dd311c8..bbd0dcf2 100644 --- a/sigal/pkgmeta.py +++ b/sigal/pkgmeta.py @@ -22,7 +22,7 @@ __title__ = 'sigal' __author__ = 'Simon Conseil' -__version__ = '1.1.0-dev' +__version__ = '1.1.0' __license__ = 'MIT' __url__ = 'https://github.com/saimn/sigal' __all__ = ['__title__', '__author__', '__version__', '__license__', '__url__']