Skip to content

Commit

Permalink
Release 1.25.4 (#1681)
Browse files Browse the repository at this point in the history
  • Loading branch information
sethmlarson committed Sep 19, 2019
1 parent 0a2950d commit 7e856c0
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 6 deletions.
6 changes: 4 additions & 2 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
Changes
=======

dev (master)
------------
1.25.4 (2019-09-19)
-------------------

* Propagate Retry-After header settings to subsequent retries. (Pull #1607)

Expand All @@ -17,6 +17,8 @@ dev (master)
* Add support for ``HTTPResponse.auto_close = False`` which makes HTTP responses
work well with BufferedReaders and other ``io`` module features. (Pull #1652)

* Percent-encode invalid characters in URL for ``HTTPConnectionPool.request()`` (Pull #1673)


1.25.3 (2019-05-23)
-------------------
Expand Down
4 changes: 2 additions & 2 deletions _travis/downstream/requests-requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ pytest-mock
pysocks
httpbin

# kennethreitz/requests#5049
# psf/requests#5049
pytest<4.1

# kennethreitz/requests#5004
# psf/requests#5004
pytest-httpbin==0.3.0
2 changes: 1 addition & 1 deletion _travis/downstream/requests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ set -exo pipefail

case "${1}" in
install)
git clone --depth 1 https://github.com/kennethreitz/requests
git clone --depth 1 https://github.com/psf/requests
cd requests
git rev-parse HEAD
python -m pip install -r ${TRAVIS_BUILD_DIR}/_travis/downstream/requests-requirements.txt
Expand Down
2 changes: 1 addition & 1 deletion src/urllib3/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@

__author__ = "Andrey Petrov (andrey.petrov@shazow.net)"
__license__ = "MIT"
__version__ = "1.25.3"
__version__ = "1.25.4"

__all__ = (
"HTTPConnectionPool",
Expand Down

0 comments on commit 7e856c0

Please sign in to comment.