From a69cf7e71cc1294fb93cb2d4e7655fab08658dc5 Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Sun, 2 Sep 2012 04:50:05 -0400 Subject: [PATCH] v0.14.0 --- .gitignore | 2 ++ HISTORY.rst | 5 +++++ requests/__init__.py | 10 +++++----- 3 files changed, 12 insertions(+), 5 deletions(-) diff --git a/.gitignore b/.gitignore index a0b1487..e5c3825 100644 --- a/.gitignore +++ b/.gitignore @@ -12,3 +12,5 @@ requests.egg-info/ *.pyc *.swp env/ + +.workon diff --git a/HISTORY.rst b/HISTORY.rst index ab3967e..1416c46 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -3,6 +3,11 @@ History ------- +0.14.0 (2012-09-02) +++++++++++++++++++++ + +- No more iter_content errors if already downloaded. + 0.13.9 (2012-08-25) +++++++++++++++++++ diff --git a/requests/__init__.py b/requests/__init__.py index a5a7807..50953f8 100644 --- a/requests/__init__.py +++ b/requests/__init__.py @@ -25,16 +25,16 @@ usage: >>> r = requests.post("http://httpbin.org/post", data=payload) >>> print r.text { - // ...snip... // + ... "form": { "key2": "value2", "key1": "value1" }, - // ...snip... // + ... } The other HTTP methods are supported - see `requests.api`. Full documentation -is at . +is at . :copyright: (c) 2012 by Kenneth Reitz. :license: ISC, see LICENSE for more details. @@ -42,8 +42,8 @@ is at . """ __title__ = 'requests' -__version__ = '0.13.9' -__build__ = 0x001309 +__version__ = '0.14.0' +__build__ = 0x001400 __author__ = 'Kenneth Reitz' __license__ = 'ISC' __copyright__ = 'Copyright 2012 Kenneth Reitz' -- 2.7.4