From: Kenneth Reitz Date: Mon, 14 Feb 2011 17:58:20 +0000 (-0500) Subject: Version Bump v0.2.2 X-Git-Tag: v0.2.2^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d511e6f148d03b5e52228b54064a24eb47c9e756;p=services%2Fpython-requests.git Version Bump v0.2.2 --- diff --git a/HISTORY.rst b/HISTORY.rst index 6f15dc9..f48abe0 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -3,12 +3,12 @@ History 0.2.2 (2011-02-14) ++++++++++++++++++ + * Still handles request in the event of an HTTPError. (Issue #2) * Eventlet and Gevent Monkeypatch support. * Cookie Support (Issue #1) - 0.2.1 (2011-02-14) ++++++++++++++++++ diff --git a/README.rst b/README.rst index 9b987ef..83bd3c4 100644 --- a/README.rst +++ b/README.rst @@ -14,6 +14,8 @@ Features + Simple HTTP Header Request Attachment + Simple Data/Params Request Attachment + Simple Multipart File Uploads + + CookieJar Support + - Simple Basic HTTP Authentication + Simple URL + HTTP Auth Registry @@ -129,7 +131,6 @@ If you'd like to contribute, simply fork `the repository`_, commit your changes Roadmap ------- -- Cookie Support - Sphinx Documentation - Exhaustive Unittests diff --git a/requests/core.py b/requests/core.py index 28d0505..6fcfca0 100644 --- a/requests/core.py +++ b/requests/core.py @@ -33,8 +33,8 @@ from .packages.poster.streaminghttp import register_openers __title__ = 'requests' -__version__ = '0.2.1' -__build__ = 0x000201 +__version__ = '0.2.2' +__build__ = 0x000202 __author__ = 'Kenneth Reitz' __license__ = 'ISC' __copyright__ = 'Copyright 2011 Kenneth Reitz' diff --git a/setup.py b/setup.py index 725ece6..727834c 100644 --- a/setup.py +++ b/setup.py @@ -22,7 +22,7 @@ required = [] setup( name='requests', - version='0.2.1', + version='0.2.2', description='Awesome Python HTTP Library that\'s actually usable.', long_description=open('README.rst').read() + '\n\n' + open('HISTORY.rst').read(),