From f99a2534c92fd64e518c8442e77de3ec0f42b4d9 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Mon, 23 Jan 2012 02:18:26 -0500 Subject: [PATCH] v0.10.1 --- HISTORY.rst | 6 ++++++ requests/__init__.py | 4 ++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index 19868fc..bf824bd 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,6 +1,12 @@ History ------- +0.10.1 (2012-01-23) ++++++++++++++++++++ + +* PYTHON 3 SUPPORT! +* Dropped 2.5 Support. (*Backwards Incompatible*) + 0.10.0 (2012-01-21) +++++++++++++++++++ diff --git a/requests/__init__.py b/requests/__init__.py index e3300cf..48fb389 100644 --- a/requests/__init__.py +++ b/requests/__init__.py @@ -15,8 +15,8 @@ requests """ __title__ = 'requests' -__version__ = '0.10.0' -__build__ = 0x001000 +__version__ = '0.10.1' +__build__ = 0x001001 __author__ = 'Kenneth Reitz' __license__ = 'ISC' __copyright__ = 'Copyright 2012 Kenneth Reitz' -- 2.34.1