From 726963800030ab35ba5b975fc3a60486c26c5050 Mon Sep 17 00:00:00 2001 From: Jelle Zijlstra Date: Sat, 1 Jun 2024 10:25:21 -0700 Subject: [PATCH] Prepare release 4.12.1 (#418) --- CHANGELOG.md | 6 +++--- pyproject.toml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c5f19626..3a5937a6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,10 +1,10 @@ -# Unreleased +# Release 4.12.1 (June 1, 2024) - Preliminary changes for compatibility with the draft implementation - of PEP 649 in Python 3.14. + of PEP 649 in Python 3.14. Patch by Jelle Zijlstra. - Fix regression in v4.12.0 where nested `Annotated` types would cause `TypeError` to be raised if the nested `Annotated` type had unhashable - metadata. + metadata. Patch by Alex Waygood. # Release 4.12.0 (May 23, 2024) diff --git a/pyproject.toml b/pyproject.toml index 5ee10946..e15c923a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,7 +6,7 @@ build-backend = "flit_core.buildapi" # Project metadata [project] name = "typing_extensions" -version = "4.12.0" +version = "4.12.1" description = "Backported and Experimental Type Hints for Python 3.8+" readme = "README.md" requires-python = ">=3.8"