From dbc023890afb14ff5e61f0332e91bb942b9af764 Mon Sep 17 00:00:00 2001 From: Dave Shawley Date: Thu, 23 Jul 2015 09:14:56 -0400 Subject: [PATCH] Version bumps for 0.2.2. --- docs/history.rst | 4 ++++ sprockets/http/__init__.py | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/docs/history.rst b/docs/history.rst index 07a895e..b909d97 100644 --- a/docs/history.rst +++ b/docs/history.rst @@ -3,6 +3,10 @@ Release History =============== +`0.2.2`_ (23 Jul 2015) +---------------------- +- Fixed requirements management... why is packaging so hard?! + `0.2.1`_ (23 Jul 2015) ---------------------- - Corrected packaging metadata diff --git a/sprockets/http/__init__.py b/sprockets/http/__init__.py index 8ad3280..957fb15 100644 --- a/sprockets/http/__init__.py +++ b/sprockets/http/__init__.py @@ -1,7 +1,7 @@ import os -version_info = (0, 2, 1) +version_info = (0, 2, 2) __version__ = '.'.join(str(v) for v in version_info)