From bf6f6f69e21fe6dde1f11be759bf155fdf6d32d0 Mon Sep 17 00:00:00 2001 From: Alex Waygood Date: Sat, 30 Mar 2024 12:46:12 +0000 Subject: [PATCH] Prepare for release 24.3.1 (#474) --- CHANGELOG.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3032226..45c8575 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,11 @@ # Change Log +## 24.3.1 + New error codes: -* Y065: Don't use bare `Incomplete` in argument and return annotations. +* Y064: Use simpler syntax to define final literal types. + For example, use `x: Final = 42` instead of `x: Final[Literal[42]]` +* Y065: Don't use bare `Incomplete` in parameter and return annotations. Bugfixes: * Y090: Fix false positive for `tuple[Unpack[Ts]]`.