Version bump to fix upload woes.

... hopefully... theory is that the dpl upload command used by travis-ci
doesn't work when you have a backtick in your password :-/
This commit is contained in:
Dave Shawley 2015-03-31 16:55:29 -04:00
parent 9d99e3c1d8
commit 05cccbddf0
2 changed files with 3 additions and 3 deletions

View file

@ -1,9 +1,9 @@
Version History
---------------
`1.0.0`_ (31-Mar-2015)
`1.0.1`_ (31-Mar-2015)
~~~~~~~~~~~~~~~~~~~~~~
- Adds ``sprockets.mixins.correlation.HandlerMixin``
.. _`1.0.0`: https://github.com/sprockets/sprockets.mixins.correlation/compare/0.0.0...1.0.0
.. _`1.0.1`: https://github.com/sprockets/sprockets.mixins.correlation/compare/0.0.0...1.0.1

View file

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