From d4d929d44bd984350e2d17726362295f588eaace Mon Sep 17 00:00:00 2001 From: Jelle Zijlstra Date: Fri, 5 Apr 2024 08:33:24 -0400 Subject: [PATCH] Prepare release 4.11.0 (#363) --- CHANGELOG.md | 7 +++++++ pyproject.toml | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 52bf2ab3..4cf71773 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +# Release 4.11.0 (April 5, 2024) + +This feature release provides improvements to various recently +added features, most importantly type parameter defaults (PEP 696). + +There are no changes since 4.11.0rc1. + # Release 4.11.0rc1 (March 24, 2024) - Fix tests on Python 3.13.0a5. Patch by Jelle Zijlstra. diff --git a/pyproject.toml b/pyproject.toml index 2ecfbd3a..4b1a7601 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,7 +6,7 @@ build-backend = "flit_core.buildapi" # Project metadata [project] name = "typing_extensions" -version = "4.11.0rc1" +version = "4.11.0" description = "Backported and Experimental Type Hints for Python 3.8+" readme = "README.md" requires-python = ">=3.8"