mirror of
https://github.com/getpelican/pelican.git
synced 2025-10-15 20:28:56 +02:00
Prepare for bumpr
This commit is contained in:
parent
e6e99ffbb9
commit
c61f6f402a
4 changed files with 35 additions and 8 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue