Release 1.2.1

This commit is contained in:
Dan Tracy 2015-06-24 14:39:10 -04:00
parent e2e6c40c81
commit 2a92b3b4fb
2 changed files with 6 additions and 1 deletions

View file

@ -1,5 +1,10 @@
Version History
===============
`1.2.1`_ Jun 24, 2015
---------------------
- Fix a potential ``KeyError`` when a HTTP request object is not present.
`1.2.0`_ Jun 23, 2015
---------------------
- Monkeypatch logging.currentframe

View file

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