mirror of
https://github.com/getpelican/pelican.git
synced 2025-10-15 20:28:56 +02:00
prepare 3.0.1 release
This commit is contained in:
parent
3087f6b440
commit
22d2c78661
3 changed files with 11 additions and 5 deletions
|
|
@ -1,10 +1,15 @@
|
|||
Release history
|
||||
###############
|
||||
|
||||
3.1 (XXXX-XX-XX)
|
||||
================
|
||||
3.0.1 (2012-11-06)
|
||||
==================
|
||||
|
||||
* Improve handling of links to intra-site resources
|
||||
* Use async google analytics
|
||||
* Reimplement settings loading to preserve __file__
|
||||
* add a way to run setup.py test
|
||||
* Fixed some documentation
|
||||
* Fix some problems with the dev server
|
||||
* Fix Typogriphy support
|
||||
|
||||
3.0 (2012-08-08)
|
||||
==================
|
||||
|
|
|
|||
|
|
@ -17,7 +17,8 @@ from pelican.writers import Writer
|
|||
|
||||
__major__ = 3
|
||||
__minor__ = 0
|
||||
__version__ = "{0}.{1}".format(__major__, __minor__)
|
||||
__micro__ = 1
|
||||
__version__ = "{0}.{1}.{2}".format(__major__, __minor__, __micro__)
|
||||
|
||||
|
||||
logger = logging.getLogger(__name__)
|
||||
|
|
|
|||
2
setup.py
2
setup.py
|
|
@ -20,7 +20,7 @@ entry_points = {
|
|||
|
||||
setup(
|
||||
name="pelican",
|
||||
version="3.1",
|
||||
version="3.0.1",
|
||||
url='http://getpelican.com/',
|
||||
author='Alexis Metaireau',
|
||||
author_email='alexis@notmyidea.org',
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue