Bump version to 1.0.0.

This commit is contained in:
Dave Shawley 2015-03-31 07:32:58 -04:00
parent e901344bad
commit d715513e13
2 changed files with 6 additions and 3 deletions

View file

@ -1,6 +1,9 @@
Version History
---------------
Next Release
~~~~~~~~~~~~
`1.0.0`_ (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

View file

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