v0.10.3
authorKenneth Reitz <me@kennethreitz.com>
Mon, 20 Feb 2012 18:49:06 +0000 (13:49 -0500)
committerKenneth Reitz <me@kennethreitz.com>
Mon, 20 Feb 2012 18:49:06 +0000 (13:49 -0500)
HISTORY.rst
requests/__init__.py

index 767131987f481349eec7d4a5b60af637d038fa98..43b6db538ac732e1fdb94af0ad6a79720dfc2ab4 100644 (file)
@@ -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)
 +++++++++++++++++++
index 5436f8902ff2958a14d74ec7af8480e7af28d2df..03efdcd199de6b4ef33f687817ff7f6d3f675368 100644 (file)
@@ -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