From 4278f513bbcd4f91a212c3c3c718143b4f5da57e Mon Sep 17 00:00:00 2001 From: Dave Shawley Date: Thu, 11 Feb 2016 14:45:09 -0500 Subject: [PATCH] Release 1.1.0 --- docs/history.rst | 4 ++-- sprockets/http/__init__.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) 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)