From e0308e352889426c4e39bc1995e1f19d66ee1b33 Mon Sep 17 00:00:00 2001 From: Alexis Metaireau Date: Tue, 28 Feb 2012 18:59:46 +0100 Subject: [PATCH] bump version --- pelican/__init__.py | 6 +++--- setup.py | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/pelican/__init__.py b/pelican/__init__.py index edd30968..6ea5ab0f 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.2" +__version__ = "2.8.0" class Pelican(object): @@ -63,10 +63,10 @@ class Pelican(object): if hasattr(p, 'generate_context'): p.generate_context() - # erase the directory if it is not the source and if that's + # erase the directory if it is not the source and if that's # explicitely asked if (self.delete_outputdir and not - os.path.realpath(self.path).startswith(self.output_path)): + os.path.realpath(self.path).startswith(self.output_path)): clean_output_dir(self.output_path) writer = self.get_writer() diff --git a/setup.py b/setup.py index 510a6855..1d6b3615 100755 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ from setuptools import setup import sys import platform -VERSION = "2.7.2" # find a better way to do so. +VERSION = "2.8.0" # find a better way to do so. requires = ['feedgenerator', 'jinja2', 'pygments', 'docutils', 'pytz'] if sys.version_info < (2,7): @@ -13,7 +13,7 @@ scripts = ['bin/pelican', 'tools/pelican-themes', 'tools/pelican-import', 'tools if sys.platform.startswith('win'): scripts += [ - 'bin/pelican.bat', 'tools/pelican-themes.bat', + 'bin/pelican.bat', 'tools/pelican-themes.bat', 'tools/pelican-import.bat', 'tools/pelican-quickstart.bat' ]