diff --git a/HISTORY.rst b/HISTORY.rst index 01b550e8..d3bd74dc 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 1aa0d131..4c5b56ae 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'