diff --git a/docs/history.rst b/docs/history.rst index c00852e..b91d8fd 100644 --- a/docs/history.rst +++ b/docs/history.rst @@ -3,8 +3,8 @@ Release History =============== -`Next Release`_ ---------------- +`1.1.0`_ (11 Feb 2016) +---------------------- - Add support for the ``before_run`` callback set. `1.0.2`_ (10 Dec 2015) diff --git a/sprockets/http/__init__.py b/sprockets/http/__init__.py index 79e94fd..37e8cae 100644 --- a/sprockets/http/__init__.py +++ b/sprockets/http/__init__.py @@ -2,7 +2,7 @@ import logging import os -version_info = (1, 0, 2) +version_info = (1, 1, 0) __version__ = '.'.join(str(v) for v in version_info)