From 5514c73615b85cc5729099ae72730aba080260e4 Mon Sep 17 00:00:00 2001 From: Jelle Zijlstra Date: Sun, 14 Nov 2021 07:19:07 -0800 Subject: [PATCH] prepare release 4.0.0 --- typing_extensions/CHANGELOG | 9 +++++++-- typing_extensions/pyproject.toml | 2 +- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/typing_extensions/CHANGELOG b/typing_extensions/CHANGELOG index 897d9ad6..aa6a8508 100644 --- a/typing_extensions/CHANGELOG +++ b/typing_extensions/CHANGELOG @@ -1,8 +1,8 @@ -# Changes in version 4.0.0 +# Release 4.0.0 (November 14, 2021) - Starting with version 4.0.0, typing_extensions uses Semantic Versioning. See the README for more information. -- Dropped support for Python versions 3.5 and older. +- Dropped support for Python versions 3.5 and older, including Python 2.7. - Simplified backports for Python 3.6.0 and newer. Patch by Adam Turner (@AA-Turner). ## Added in version 4.0.0 @@ -24,3 +24,8 @@ unneeded for supporting Python 3.6 and newer. - HAVE_PROTOCOLS - V_co - VT_co + +# Previous releases + +Prior to release 4.0.0 we did not provide a changelog. Please check +the Git history for details. diff --git a/typing_extensions/pyproject.toml b/typing_extensions/pyproject.toml index 2ea4171b..bf594d14 100644 --- a/typing_extensions/pyproject.toml +++ b/typing_extensions/pyproject.toml @@ -6,7 +6,7 @@ build-backend = "flit_core.buildapi" # Project metadata [project] name = "typing_extensions" -version = "4.0.0-pre" +version = "4.0.0" description = "Backported and Experimental Type Hints for Python 3.6+" readme.text = """\ Typing Extensions -- Backported and Experimental Type Hints for Python