Metadata bumps for 1.0.2.

This commit is contained in:
Dave Shawley 2016-06-20 16:01:00 -04:00
parent d8f6f70142
commit 6680f4b940
3 changed files with 7 additions and 2 deletions

View file

@ -1,9 +1,14 @@
Version History
---------------
`1.0.2`_ (20-Jun-2016)
~~~~~~~~~~~~~~~~~~~~~~
- Add support for async prepare in superclasses of ``HandlerMixin``
`1.0.1`_ (31-Mar-2015)
~~~~~~~~~~~~~~~~~~~~~~
- Adds ``sprockets.mixins.correlation.HandlerMixin``
.. _`1.0.2`: https://github.com/sprockets/sprockets.mixins.correlation/compare/1.0.1...1.0.2
.. _`1.0.1`: https://github.com/sprockets/sprockets.mixins.correlation/compare/0.0.0...1.0.1

View file

@ -10,7 +10,7 @@ templates_path = []
source_suffix = '.rst'
master_doc = 'index'
project = 'sprockets.mixins.correlation'
copyright = '2015, AWeber Communications'
copyright = '2015-2016, AWeber Communications'
version = '.'.join(__version__.split('.')[0:1])
release = __version__
if len(version_info) > 3:

View file

@ -1,5 +1,5 @@
from .mixins import HandlerMixin
version_info = (1, 0, 1)
version_info = (1, 0, 2)
__version__ = '.'.join(str(v) for v in version_info[:3])