diff --git a/HISTORY.rst b/HISTORY.rst index 76713198..43b6db53 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 5436f890..03efdcd1 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