mirror of
https://github.com/sprockets/sprockets.logging.git
synced 2024-11-22 03:00:23 +00:00
Release 1.2.1
This commit is contained in:
parent
e2e6c40c81
commit
2a92b3b4fb
2 changed files with 6 additions and 1 deletions
|
@ -1,5 +1,10 @@
|
||||||
Version History
|
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
|
`1.2.0`_ Jun 23, 2015
|
||||||
---------------------
|
---------------------
|
||||||
- Monkeypatch logging.currentframe
|
- Monkeypatch logging.currentframe
|
||||||
|
|
|
@ -20,7 +20,7 @@ try:
|
||||||
except ImportError:
|
except ImportError:
|
||||||
log = None
|
log = None
|
||||||
|
|
||||||
version_info = (1, 2, 0)
|
version_info = (1, 2, 1)
|
||||||
__version__ = '.'.join(str(v) for v in version_info)
|
__version__ = '.'.join(str(v) for v in version_info)
|
||||||
|
|
||||||
# Shortcut methods and constants to avoid needing to import logging directly
|
# Shortcut methods and constants to avoid needing to import logging directly
|
||||||
|
|
Loading…
Reference in a new issue