diff --git a/CHANGES.rst b/CHANGES.rst index 706bb9019..66d574714 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -14,6 +14,15 @@ Changelog .. towncrier release notes start +6.0.4 (2022-12-24) +================== + +Bugfixes +-------- + +- Fixed a type annotations regression introduced in v6.0.2 under Python versions <3.10. It was caused by importing certain types only available in newer versions. (:issue:`798`) + + 6.0.3 (2022-12-03) ================== diff --git a/CHANGES/798.bugfix b/CHANGES/798.bugfix deleted file mode 100644 index 83a28163d..000000000 --- a/CHANGES/798.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fixed a type annotations regression introduced in v6.0.2 under Python versions <3.10. It was caused by importing certain types only available in newer versions. diff --git a/multidict/__init__.py b/multidict/__init__.py index 33f62703c..d9ea72216 100644 --- a/multidict/__init__.py +++ b/multidict/__init__.py @@ -20,7 +20,7 @@ "getversion", ) -__version__ = "6.0.3" +__version__ = "6.0.4" try: