Version increment.

This commit is contained in:
Ryan Petrello
2013-04-25 12:15:21 -04:00
parent b294752202
commit 98f3c566ee
3 changed files with 14 additions and 3 deletions

View File

@@ -1,3 +1,14 @@
0.2.3
=====
* Add a variety of optimizations to ``pecan.core`` that improve request
handling time by approximately 30% for simple object dispatch routing.
* Store exceptions raised by ``abort`` in the WSGI environ so they can be
accessed later in the request handling (e.g., by other middleware or pecan
hooks).
* Make TransactionHook more robust so that it isn't as susceptible to failure
when exceptions occur in *other* pecan hooks within a request.
* Rearrange quickstart verbiage so users don't miss a necessary step.
0.2.2
=====
* Unobfuscate syntax highlighting JavaScript for debian packaging.

View File

@@ -49,9 +49,9 @@ copyright = u'2010, Jonathan LaCour'
# built documents.
#
# The short X.Y version.
version = '0.2.2'
version = '0.2.3'
# The full version, including alpha/beta/rc tags.
release = '0.2.2'
release = '0.2.3'
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.

View File

@@ -2,7 +2,7 @@ import sys
from setuptools import setup, find_packages
from setuptools.command.test import test as TestCommand
version = '0.2.2'
version = '0.2.3'
#
# determine requirements