From eafcecd75dbfacc19fcfb018112683ee96c47a2d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexis=20M=C3=A9taireau?= Date: Tue, 4 Dec 2012 01:41:38 +0100 Subject: [PATCH] release 3.1.1 --- docs/changelog.rst | 5 ----- pelican/__init__.py | 5 +++-- setup.py | 2 +- 3 files changed, 4 insertions(+), 8 deletions(-) diff --git a/docs/changelog.rst b/docs/changelog.rst index 05454e17..7c0675f9 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -1,11 +1,6 @@ Release history ############### -3.2 (XXXX-XX-XX) -================ - -* ??? - 3.1 (2012-12-04) ================ diff --git a/pelican/__init__.py b/pelican/__init__.py index 6a7ee708..7fcb22dd 100644 --- a/pelican/__init__.py +++ b/pelican/__init__.py @@ -17,8 +17,9 @@ from pelican.utils import (clean_output_dir, files_changed, file_changed, from pelican.writers import Writer __major__ = 3 -__minor__ = 2 -__version__ = "{0}.{1}".format(__major__, __minor__) +__minor__ = 1 +__micro__ = 1 +__version__ = "{0}.{1}.{2}".format(__major__, __minor__, __micro__) logger = logging.getLogger(__name__) diff --git a/setup.py b/setup.py index 326a3195..8f7a40db 100755 --- a/setup.py +++ b/setup.py @@ -20,7 +20,7 @@ entry_points = { setup( name="pelican", - version="3.2", + version="3.1.1", url='http://getpelican.com/', author='Alexis Metaireau', author_email='authors@getpelican.com',