prepare 3.0.1 release

This commit is contained in:
Alexis Métaireau 2012-11-06 00:47:38 +01:00
commit 22d2c78661
3 changed files with 11 additions and 5 deletions

View file

@ -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)
==================

View file

@ -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__)

View file

@ -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',