summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIan Cordasco <icordasc+github@coglib.com>2014-12-01 17:22:17 -0600
committerIan Cordasco <icordasc+github@coglib.com>2014-12-01 17:22:17 -0600
commitf172b30356d821d180fa4ecfa3e71c7274a32de4 (patch)
tree3bdfc4e222f8aebcc007949cdbb2e2fdf7e460f4
parent90857b8b59020397e5064df9aaedbef817f0ce3b (diff)
parent33b25176b86efcfa79bc93bae9be8e4affc48262 (diff)
downloadpython-requests-f172b30356d821d180fa4ecfa3e71c7274a32de4.tar.gz
Merge pull request #2365 from sigmavirus24/release/2.5v2.5.0
Release v2.5.0
-rw-r--r--HISTORY.rst35
-rw-r--r--requests/__init__.py4
2 files changed, 37 insertions, 2 deletions
diff --git a/HISTORY.rst b/HISTORY.rst
index 0d0d216d..5828c9d2 100644
--- a/HISTORY.rst
+++ b/HISTORY.rst
@@ -3,6 +3,41 @@
Release History
---------------
+2.5.0 (2014-12-01)
+++++++++++++++++++
+
+**Improvements**
+
+- Allow usage of urllib3's Retry object with HTTPAdapters (#2216)
+- The ``iter_lines`` method on a response now accepts a delimiter with which
+ to split the content (#2295)
+
+**Behavioural Changes**
+
+- Add deprecation warnings to functions in requests.utils that will be removed
+ in 3.0 (#2309)
+- Sessions used by the functional API are always closed (#2326)
+- Restrict requests to HTTP/1.1 and HTTP/1.0 (stop accepting HTTP/0.9) (#2323)
+
+**Bugfixes**
+
+- Only parse the URL once (#2353)
+- Allow Content-Length header to always be overriden (#2332)
+- Properly handle files in HTTPDigestAuth (#2333)
+- Cap redirect_cache size to prevent memory abuse (#2299)
+- Fix HTTPDigestAuth handling of redirects after authenticating successfully
+ (#2253)
+- Fix crash with custom method parameter to Session.request (#2317)
+- Fix how Link headers are parsed using the regular expression library (#2271)
+
+**Documentation**
+
+- Add more references for interlinking (#2348)
+- Update CSS for theme (#2290)
+- Update width of buttons and sidebar (#2289)
+- Replace references of Gittip with Gratipay (#2282)
+- Add link to changelog in sidebar (#2273)
+
2.4.3 (2014-10-06)
++++++++++++++++++
diff --git a/requests/__init__.py b/requests/__init__.py
index d5e1956e..22cd57d1 100644
--- a/requests/__init__.py
+++ b/requests/__init__.py
@@ -42,8 +42,8 @@ is at <http://python-requests.org>.
"""
__title__ = 'requests'
-__version__ = '2.4.3'
-__build__ = 0x020403
+__version__ = '2.5.0'
+__build__ = 0x020500
__author__ = 'Kenneth Reitz'
__license__ = 'Apache 2.0'
__copyright__ = 'Copyright 2014 Kenneth Reitz'