mirror of
https://github.com/sprockets/sprockets.logging.git
synced 2024-11-21 19:28:35 +00:00
Version bump to 1.3.2.
This commit is contained in:
parent
50f5baa466
commit
503e404b8b
2 changed files with 6 additions and 1 deletions
|
@ -1,6 +1,10 @@
|
|||
Version History
|
||||
===============
|
||||
|
||||
`1.3.2`_ Oct 2, 2015
|
||||
---------------------
|
||||
- Switch to packaging as a package instead of a py_module.
|
||||
|
||||
`1.3.1`_ Sep 14, 2015
|
||||
---------------------
|
||||
- Fix query_arguments handling in Python 3
|
||||
|
@ -36,6 +40,7 @@ Version History
|
|||
---------------------
|
||||
- Added :class:`sprockets.logging.ContextFilter`
|
||||
|
||||
.. _1.3.2: https://github.com/sprockets/sprockets.logging/compare/1.3.1...1.3.2
|
||||
.. _1.3.1: https://github.com/sprockets/sprockets.logging/compare/1.3.0...1.3.1
|
||||
.. _1.3.0: https://github.com/sprockets/sprockets.logging/compare/1.2.1...1.3.0
|
||||
.. _1.2.1: https://github.com/sprockets/sprockets.logging/compare/1.2.0...1.2.1
|
||||
|
|
|
@ -23,7 +23,7 @@ except ImportError: # pragma no cover
|
|||
escape = None
|
||||
log = None
|
||||
|
||||
version_info = (1, 3, 1)
|
||||
version_info = (1, 3, 2)
|
||||
__version__ = '.'.join(str(v) for v in version_info)
|
||||
|
||||
# Shortcut methods and constants to avoid needing to import logging directly
|
||||
|
|
Loading…
Reference in a new issue