bump to 1.3.0

This commit is contained in:
Amber Heilman 2015-08-28 15:34:57 -04:00
parent dee70b6e43
commit a249534dea
2 changed files with 5 additions and 1 deletions

View file

@ -1,6 +1,10 @@
Version History
===============
`1.3.0`_ Aug 28, 2015
---------------------
- Add the traceback and environment if set
`1.2.1`_ Jun 24, 2015
---------------------
- Fix a potential ``KeyError`` when a HTTP request object is not present.

View file

@ -21,7 +21,7 @@ try:
except ImportError:
log = None
version_info = (1, 2, 1)
version_info = (1, 3, 0)
__version__ = '.'.join(str(v) for v in version_info)
# Shortcut methods and constants to avoid needing to import logging directly