Skip to content

Commit

Permalink
Release 2.0.7
Browse files Browse the repository at this point in the history
  • Loading branch information
illia-v committed Oct 17, 2023
1 parent 4e50fbc commit 56f01e0
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .readthedocs.yml
Expand Up @@ -3,7 +3,7 @@ version: 2
build:
os: ubuntu-22.04
tools:
python: "3"
python: "3.11"

python:
install:
Expand Down
10 changes: 10 additions & 0 deletions CHANGES.rst
@@ -1,3 +1,8 @@
2.0.7 (2023-10-17)
==================

* Made body stripped from HTTP requests changing the request method to GET after HTTP 303 "See Other" redirect responses.

2.0.6 (2023-10-02)
==================

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

1.26.18 (2023-10-17)
====================

* Made body stripped from HTTP requests changing the request method to GET after HTTP 303 "See Other" redirect responses.

1.26.17 (2023-10-02)
====================

Expand Down
2 changes: 1 addition & 1 deletion dev-requirements.txt
Expand Up @@ -10,4 +10,4 @@ cryptography==39.0.2;implementation_name=="pypy" and implementation_version<"7.3
cryptography==41.0.4;implementation_name!="pypy" or implementation_version>="7.3.10"
backports.zoneinfo==0.2.1;python_version<"3.9"
towncrier==23.6.0
pytest-memray==1.4.0;python_version>="3.8" and python_version<"3.12" and sys_platform!="win32" and implementation_name=="cpython"
pytest-memray==1.4.0;python_version>="3.8" and python_version<"3.13" and sys_platform!="win32" and implementation_name=="cpython"
2 changes: 1 addition & 1 deletion src/urllib3/_version.py
@@ -1,4 +1,4 @@
# This file is protected via CODEOWNERS
from __future__ import annotations

__version__ = "2.0.6"
__version__ = "2.0.7"

0 comments on commit 56f01e0

Please sign in to comment.