From: Kenneth Reitz Date: Mon, 7 Nov 2011 19:20:32 +0000 (-0500) Subject: v0.7.6 X-Git-Tag: v0.7.6 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=8c90c610cd15f91ed0cd1738aa73f088496b6af9;p=services%2Fpython-requests.git v0.7.6 Fixes #237 --- diff --git a/HISTORY.rst b/HISTORY.rst index 156b764..36d47f7 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,6 +1,11 @@ History ------- +0.7.6 (2011-11-07) +++++++++++++++++++ + +* Digest authentication bugfix (attach query data to path) + 0.7.5 (2011-11-04) ++++++++++++++++++ diff --git a/requests/__init__.py b/requests/__init__.py index 6699ac5..1140a52 100644 --- a/requests/__init__.py +++ b/requests/__init__.py @@ -15,8 +15,8 @@ requests """ __title__ = 'requests' -__version__ = '0.7.5' -__build__ = 0x000705 +__version__ = '0.7.6' +__build__ = 0x000706 __author__ = 'Kenneth Reitz' __license__ = 'ISC' __copyright__ = 'Copyright 2011 Kenneth Reitz'