From: Kenneth Reitz Date: Mon, 17 Dec 2012 18:53:24 +0000 (-0500) Subject: v1.0.1 X-Git-Tag: v1.0.1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b30b09e84c5709149e796af5cb07671db823af53;p=services%2Fpython-requests.git v1.0.1 --- diff --git a/HISTORY.rst b/HISTORY.rst index 191efa4..e979f67 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -3,10 +3,11 @@ History ------- -1.0.1 -+++++ +1.0.1 (2012-12-17) +++++++++++++++++++ - Cert verification exception bug. +- Proxy fix for HTTPAdapter. 1.0.0 (2012-12-17) ++++++++++++++++++ diff --git a/requests/__init__.py b/requests/__init__.py index 81096f6..c22313d 100644 --- a/requests/__init__.py +++ b/requests/__init__.py @@ -42,8 +42,8 @@ is at . """ __title__ = 'requests' -__version__ = '1.0.0' -__build__ = 0x01000 +__version__ = '1.0.1' +__build__ = 0x01001 __author__ = 'Kenneth Reitz' __license__ = 'Apache 2.0' __copyright__ = 'Copyright 2012 Kenneth Reitz'