From c18e6459a80d83c54f787549565eedb3a0210156 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Wed, 18 Jan 2012 21:56:33 -0500 Subject: [PATCH] v0.9.3 --- HISTORY.rst | 6 +++++- requests/__init__.py | 4 ++-- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index 01b550e..d3bd74d 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,11 +1,15 @@ History ------- +0.9.3 (2012-01-18) +++++++++++++++++++ + +* SSL verify=False bugfix (apparent on windows machines). + 0.9.2 (2012-01-18) ++++++++++++++++++ * Asyncronous async.send method. -* SSL verify=False bugfix (apparent on windows machines). * Support for proper chunk streams with boundaries. * session argument for Session classes. * Print entire hook tracebacks, not just exception instance. diff --git a/requests/__init__.py b/requests/__init__.py index 1aa0d13..4c5b56a 100644 --- a/requests/__init__.py +++ b/requests/__init__.py @@ -15,8 +15,8 @@ requests """ __title__ = 'requests' -__version__ = '0.9.2' -__build__ = 0x000902 +__version__ = '0.9.3' +__build__ = 0x000903 __author__ = 'Kenneth Reitz' __license__ = 'ISC' __copyright__ = 'Copyright 2012 Kenneth Reitz' -- 2.7.4