From 4aacf4f7c7f4cb11e7e17528ee38329d01ed8415 Mon Sep 17 00:00:00 2001 From: Alexis Metaireau Date: Sun, 19 Dec 2010 01:30:08 +0000 Subject: [PATCH] Version bump --- pelican/__init__.py | 2 +- setup.py | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/pelican/__init__.py b/pelican/__init__.py index c60fafae..eec863aa 100644 --- a/pelican/__init__.py +++ b/pelican/__init__.py @@ -7,7 +7,7 @@ from pelican.writers import Writer from pelican.generators import (ArticlesGenerator, PagesGenerator, StaticGenerator, PdfGenerator) -VERSION = "2.5.2" +VERSION = "2.5.3" def init_params(settings=None, path=None, theme=None, output_path=None, diff --git a/setup.py b/setup.py index c10b4fb2..11378737 100644 --- a/setup.py +++ b/setup.py @@ -1,6 +1,7 @@ from setuptools import setup import sys -VERSION = "2.5.2" + +VERSION = "2.5.3" # find a better way to do so. requires = ['feedgenerator', 'jinja2', 'pygments', 'docutils', 'Markdown'] if sys.version_info < (2,7):