Version Bump v0.2.2

This commit is contained in:
Kenneth Reitz
2011-02-14 12:58:20 -05:00
parent 8ff8e02ace
commit d511e6f148
4 changed files with 6 additions and 5 deletions
+1 -1
View File
@@ -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)
++++++++++++++++++
+2 -1
View File
@@ -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
+2 -2
View File
@@ -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'
+1 -1
View File
@@ -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(),