From 61884c5de42bf6860e442a64621eed54077669ea Mon Sep 17 00:00:00 2001 From: Alexis Metaireau Date: Sun, 12 Jun 2011 22:37:39 +0200 Subject: [PATCH] Bump minor version --- pelican/__init__.py | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pelican/__init__.py b/pelican/__init__.py index 20f3862e..4d942e3b 100644 --- a/pelican/__init__.py +++ b/pelican/__init__.py @@ -9,7 +9,7 @@ from pelican.utils import clean_output_dir, files_changed from pelican.writers import Writer from pelican import log -VERSION = "2.7.0" +VERSION = "2.7.1" class Pelican(object): diff --git a/setup.py b/setup.py index 7ed7038c..198686e0 100755 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup import sys -VERSION = "2.7.0" # find a better way to do so. +VERSION = "2.7.1" # find a better way to do so. requires = ['feedgenerator', 'jinja2', 'pygments', 'docutils'] if sys.version_info < (2,7):