diff --git a/docs/history.rst b/docs/history.rst index df11097..5fd23c8 100644 --- a/docs/history.rst +++ b/docs/history.rst @@ -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. diff --git a/sprockets/logging.py b/sprockets/logging.py index a09be5e..c7027fc 100644 --- a/sprockets/logging.py +++ b/sprockets/logging.py @@ -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