Skip to content

Commit

Permalink
Release 2.0.0a4
Browse files Browse the repository at this point in the history
  • Loading branch information
sethmlarson committed Apr 25, 2023
1 parent e5a5dfc commit c479b73
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 6 deletions.
9 changes: 9 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
2.0.0a4 (2023-04-24)
====================

- Removed the ``setup.py`` shim, ``python setup.py install`` will print ``[Errno 2] No such file or directory`` instead of a warning to use pip (`#2975 <https://github.com/urllib3/urllib3/issues/2975>`__)
- Added optional ``backoff_jitter`` parameter to ``Retry``. (`#2952 <https://github.com/urllib3/urllib3/issues/2952>`__)
- Fixed URL encoding by removing '!' from the 'unreserved' character set specified in RFC 3986. (`#2899 <https://github.com/urllib3/urllib3/issues/2899>`__)
- Fixed a sign error in a check for whether a character is in the ASCII range. (`#2901 <https://github.com/urllib3/urllib3/issues/2901>`__)
- Fixed ``urllib3.contrib.pyopenssl.WrappedSocket`` and ``urllib3.contrib.securetransport.WrappedSocket`` close methods (`#2970 <https://github.com/urllib3/urllib3/issues/2970>`__)

2.0.0a3 (2023-01-11)
====================

Expand Down
1 change: 0 additions & 1 deletion changelog/2899.bugfix.rst

This file was deleted.

1 change: 0 additions & 1 deletion changelog/2901.bugfix.rst

This file was deleted.

1 change: 0 additions & 1 deletion changelog/2952.feature.rst

This file was deleted.

1 change: 0 additions & 1 deletion changelog/2970.bugfix.rst

This file was deleted.

1 change: 0 additions & 1 deletion changelog/2975.removal.rst

This file was deleted.

2 changes: 1 addition & 1 deletion src/urllib3/_version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# This file is protected via CODEOWNERS
from __future__ import annotations

__version__ = "2.0.0a3"
__version__ = "2.0.0a4"

0 comments on commit c479b73

Please sign in to comment.