diff --git a/docs/changelog.rst b/docs/changelog.rst index 1956e47c..31c50182 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -1,10 +1,11 @@ Release history ############### -Next release -============ +3.7.1 (2017-01-10) +================== -- Nothing yet +* Fix locale issues in Quickstart script +* Specify encoding for README and CHANGELOG in setup.py 3.7.0 (2016-12-12) ================== diff --git a/docs/conf.py b/docs/conf.py index 63a4a269..81a06e3a 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -21,7 +21,7 @@ copyright = '2015, Alexis Metaireau and contributors' exclude_patterns = ['_build'] release = __version__ version = '.'.join(release.split('.')[:1]) -last_stable = '3.7.0' +last_stable = '3.7.1' rst_prolog = ''' .. |last_stable| replace:: :pelican-doc:`{0}` '''.format(last_stable) diff --git a/pelican/__init__.py b/pelican/__init__.py index cdcd98b1..25da26e2 100644 --- a/pelican/__init__.py +++ b/pelican/__init__.py @@ -25,7 +25,7 @@ from pelican.utils import (clean_output_dir, file_watcher, folder_watcher, maybe_pluralize) from pelican.writers import Writer -__version__ = "3.7.1.dev0" +__version__ = "3.7.1" DEFAULT_CONFIG_NAME = 'pelicanconf.py' logger = logging.getLogger(__name__) diff --git a/setup.py b/setup.py index f221930d..62ce8124 100755 --- a/setup.py +++ b/setup.py @@ -28,7 +28,7 @@ if sys.version_info.major < 3: setup( name='pelican', - version='3.7.1.dev0', + version='3.7.1', url='http://getpelican.com/', author='Alexis Metaireau', maintainer='Justin Mayer',