Skip to content

Commit 56f01e0

Browse files
authored
Release 2.0.7
1 parent 4e50fbc commit 56f01e0

File tree

4 files changed

+13
-3
lines changed

4 files changed

+13
-3
lines changed

.readthedocs.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ version: 2
33
build:
44
os: ubuntu-22.04
55
tools:
6-
python: "3"
6+
python: "3.11"
77

88
python:
99
install:

CHANGES.rst

+10
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
2.0.7 (2023-10-17)
2+
==================
3+
4+
* Made body stripped from HTTP requests changing the request method to GET after HTTP 303 "See Other" redirect responses.
5+
16
2.0.6 (2023-10-02)
27
==================
38

@@ -167,6 +172,11 @@ Fixed
167172
* Fixed a socket leak if ``HTTPConnection.connect()`` fails (`#2571 <https://github.com/urllib3/urllib3/pull/2571>`__).
168173
* Fixed ``urllib3.contrib.pyopenssl.WrappedSocket`` and ``urllib3.contrib.securetransport.WrappedSocket`` close methods (`#2970 <https://github.com/urllib3/urllib3/issues/2970>`__)
169174

175+
1.26.18 (2023-10-17)
176+
====================
177+
178+
* Made body stripped from HTTP requests changing the request method to GET after HTTP 303 "See Other" redirect responses.
179+
170180
1.26.17 (2023-10-02)
171181
====================
172182

dev-requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ cryptography==39.0.2;implementation_name=="pypy" and implementation_version<"7.3
1010
cryptography==41.0.4;implementation_name!="pypy" or implementation_version>="7.3.10"
1111
backports.zoneinfo==0.2.1;python_version<"3.9"
1212
towncrier==23.6.0
13-
pytest-memray==1.4.0;python_version>="3.8" and python_version<"3.12" and sys_platform!="win32" and implementation_name=="cpython"
13+
pytest-memray==1.4.0;python_version>="3.8" and python_version<"3.13" and sys_platform!="win32" and implementation_name=="cpython"

src/urllib3/_version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# This file is protected via CODEOWNERS
22
from __future__ import annotations
33

4-
__version__ = "2.0.6"
4+
__version__ = "2.0.7"

0 commit comments

Comments
 (0)