From: Kenneth Reitz Date: Mon, 20 Feb 2012 18:49:06 +0000 (-0500) Subject: v0.10.3 X-Git-Tag: v0.10.3~4 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=709c8bdcbf9a4b37a69e7790768c1d46ebac0035;p=services%2Fpython-requests.git v0.10.3 --- diff --git a/HISTORY.rst b/HISTORY.rst index 7671319..43b6db5 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,11 +1,12 @@ History ------- -0.10.3 -++++++ +0.10.3 (2012-02-20) ++++++++++++++++++++ * Make Session objects picklable. * ValueError for invalid schema URLs. +* raise_for_status() doesn't raise for 3xx anymore. 0.10.2 (2012-01-15) +++++++++++++++++++ diff --git a/requests/__init__.py b/requests/__init__.py index 5436f89..03efdcd 100644 --- a/requests/__init__.py +++ b/requests/__init__.py @@ -15,14 +15,13 @@ requests """ __title__ = 'requests' -__version__ = '0.10.2' -__build__ = 0x001002 +__version__ = '0.10.3' +__build__ = 0x001003 __author__ = 'Kenneth Reitz' __license__ = 'ISC' __copyright__ = 'Copyright 2012 Kenneth Reitz' - from . import utils from .models import Request, Response from .api import request, get, head, post, patch, put, delete, options