summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorQuentin Pradet <quentin.pradet@gmail.com>2023-01-11 13:49:50 +0100
committerGitHub <noreply@github.com>2023-01-11 06:49:50 -0600
commit2889596e309d30220d1f4ef2e80d4a92a906fa0a (patch)
treeca06d131c41f1778f671e7bbe7cc71b2b498f04c
parent892eb3b277dabdae4a74f98a53d3b8614add22ab (diff)
downloadurllib3-2889596e309d30220d1f4ef2e80d4a92a906fa0a.tar.gz
Release 2.0.0a32.0.0a3
Co-authored-by: Yiyang Zhan <pon.zhan@gmail.com> Co-authored-by: Seth Michael Larson <sethmichaellarson@gmail.com>
-rw-r--r--CHANGES.rst11
-rw-r--r--changelog/2839.bugfix.rst1
-rw-r--r--changelog/2850.bugfix.rst1
-rw-r--r--changelog/2865.bugfix.rst1
-rw-r--r--src/urllib3/_version.py2
5 files changed, 12 insertions, 4 deletions
diff --git a/CHANGES.rst b/CHANGES.rst
index f3545e13..3a76dafc 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -1,3 +1,14 @@
+2.0.0a3 (2023-01-11)
+====================
+
+Bugfixes
+--------
+
+- Fix logging error when using ``add_stderr_logger``. (`#2839 <https://github.com/urllib3/urllib3/issues/2839>`__)
+- Fixed parsing of port 0 (zero) returning None, instead of 0. (`#2850 <https://github.com/urllib3/urllib3/issues/2850>`__)
+- Fixed the type hint of ``PoolKey.key_retries`` by adding ``bool`` to the union. (`#2865 <https://github.com/urllib3/urllib3/issues/2865>`__)
+
+
2.0.0a2 (2022-11-23)
====================
diff --git a/changelog/2839.bugfix.rst b/changelog/2839.bugfix.rst
deleted file mode 100644
index 9c3ff709..00000000
--- a/changelog/2839.bugfix.rst
+++ /dev/null
@@ -1 +0,0 @@
-Fix logging error when using ``add_stderr_logger``.
diff --git a/changelog/2850.bugfix.rst b/changelog/2850.bugfix.rst
deleted file mode 100644
index ec89cb5c..00000000
--- a/changelog/2850.bugfix.rst
+++ /dev/null
@@ -1 +0,0 @@
-Fixed parsing of port 0 (zero) returning None, instead of 0.
diff --git a/changelog/2865.bugfix.rst b/changelog/2865.bugfix.rst
deleted file mode 100644
index 8a5cb954..00000000
--- a/changelog/2865.bugfix.rst
+++ /dev/null
@@ -1 +0,0 @@
-Fixed the type hint of ``PoolKey.key_retries`` by adding ``bool`` to the union.
diff --git a/src/urllib3/_version.py b/src/urllib3/_version.py
index 15f09268..d84ed56d 100644
--- a/src/urllib3/_version.py
+++ b/src/urllib3/_version.py
@@ -1,4 +1,4 @@
# This file is protected via CODEOWNERS
from __future__ import annotations
-__version__ = "2.0.0a2"
+__version__ = "2.0.0a3"