From d511e6f148d03b5e52228b54064a24eb47c9e756 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Mon, 14 Feb 2011 12:58:20 -0500 Subject: [PATCH] Version Bump v0.2.2 --- HISTORY.rst | 2 +- README.rst | 3 ++- requests/core.py | 4 ++-- setup.py | 2 +- 4 files changed, 6 insertions(+), 5 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index 6f15dc91..f48abe0f 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 9b987ef8..83bd3c44 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 28d05053..6fcfca03 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 725ece6a..727834c5 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(),