From 8c90c610cd15f91ed0cd1738aa73f088496b6af9 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Mon, 7 Nov 2011 14:20:32 -0500 Subject: [PATCH] v0.7.6 Fixes #237 --- HISTORY.rst | 5 +++++ requests/__init__.py | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index 156b764c..36d47f7c 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 6699ac51..1140a523 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'