summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexis Métaireau <alexis@notmyidea.org>2012-11-06 00:47:38 +0100
committerAlexis Métaireau <alexis@notmyidea.org>2012-11-06 00:47:38 +0100
commit22d2c786618cb3ffcb29ba70ae053087d5058ecc (patch)
tree83e23abe2645ee7ae0779dab64d005a44b50188f
parent3087f6b440b6379f761939bb558e6160a0a7ef85 (diff)
downloadpelican-3.0.1.tar.gz
prepare 3.0.1 release3.0.13.0.1
-rw-r--r--docs/changelog.rst11
-rw-r--r--pelican/__init__.py3
-rwxr-xr-xsetup.py2
3 files changed, 11 insertions, 5 deletions
diff --git a/docs/changelog.rst b/docs/changelog.rst
index 6cea6d93..34d9b8cb 100644
--- a/docs/changelog.rst
+++ b/docs/changelog.rst
@@ -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)
==================
diff --git a/pelican/__init__.py b/pelican/__init__.py
index a69752d8..96244f60 100644
--- a/pelican/__init__.py
+++ b/pelican/__init__.py
@@ -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__)
diff --git a/setup.py b/setup.py
index 97c8ca64..86b07c42 100755
--- a/setup.py
+++ b/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',