From: Kenneth Reitz Date: Mon, 14 Feb 2011 15:35:15 +0000 (-0500) Subject: v0.2.1 X-Git-Tag: v0.2.1^2~2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=9f9ebecec27108db292a31397e44d447f4ebfeb9;p=services%2Fpython-requests.git v0.2.1 --- diff --git a/HISTORY.rst b/HISTORY.rst index 7da0986..41118bb 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,6 +1,13 @@ History ------- +0.2.1 (2011-02-14) +++++++++++++++++++ + +* Added file attribute to POST and PUT requests for multipart-encode file uploads. +* Added Request.url attribute for context and redirects + + 0.2.0 (2011-02-14) ++++++++++++++++++ diff --git a/requests/core.py b/requests/core.py index f299f61..c99de57 100644 --- a/requests/core.py +++ b/requests/core.py @@ -18,8 +18,8 @@ from .packages.poster.streaminghttp import register_openers __title__ = 'requests' -__version__ = '0.2.0' -__build__ = 0x000200 +__version__ = '0.2.1' +__build__ = 0x000201 __author__ = 'Kenneth Reitz' __license__ = 'ISC' __copyright__ = 'Copyright 2011 Kenneth Reitz' diff --git a/setup.py b/setup.py index 6684587..b7e1d9c 100644 --- a/setup.py +++ b/setup.py @@ -21,7 +21,7 @@ required = [] setup( name='requests', - version='0.2.0', + version='0.2.1', description='Python HTTP Library that\'s actually usable.', long_description=open('README.rst').read() + '\n\n' + open('HISTORY.rst').read(), @@ -30,6 +30,8 @@ setup( url='https://github.com/kennethreitz/requests', packages= [ 'requests', + 'requests.packages', + 'requests.packages.poster' ], install_requires=required, license='ISC',