diff --git a/HISTORY.rst b/HISTORY.rst index d6b8f496..84ce4a6e 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,6 +1,14 @@ History ------- +0.10.5 (2012-02-25) ++++++++++++++++++++ + +* Response body with 0 content-length fix. +* New async.imap. +* Don't fail on netrc. + + 0.10.4 (2012-02-20) +++++++++++++++++++ diff --git a/requests/__init__.py b/requests/__init__.py index 997781f4..0c96ec2c 100644 --- a/requests/__init__.py +++ b/requests/__init__.py @@ -15,8 +15,8 @@ requests """ __title__ = 'requests' -__version__ = '0.10.4' -__build__ = 0x001004 +__version__ = '0.10.5' +__build__ = 0x001005 __author__ = 'Kenneth Reitz' __license__ = 'ISC' __copyright__ = 'Copyright 2012 Kenneth Reitz'