Prepare for bumpr

This commit is contained in:
Axel Haustant 2013-03-27 09:30:54 +01:00
commit c61f6f402a
4 changed files with 35 additions and 8 deletions

View file

@ -2,7 +2,7 @@ Release history
###############
Next release
================
============
* Rename signals for better consistency (some plugins may need to be updated)
* Move metadata extraction from generators to readers; metadata extraction no

View file

@ -4,7 +4,7 @@ import sys, os
sys.path.append(os.path.abspath(os.pardir))
from pelican import __version__, __major__, __minor__
from pelican import __version__
# -- General configuration -----------------------------------------------------
templates_path = ['_templates']
@ -14,9 +14,9 @@ master_doc = 'index'
project = 'Pelican'
copyright = '2010, Alexis Metaireau and contributors'
exclude_patterns = ['_build']
version = '%s.%s' % (__major__, __minor__)
release = __version__
last_stable = '3.1.1'
version = '.'.join(release.split('.')[:1])
last_stable = '3.2.2'
rst_prolog = '''
.. |last_stable| replace:: :pelican-doc:`{0}`
'''.format(last_stable)