Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prepare for release 24.3.1 #474

Merged
merged 2 commits into from
Mar 30, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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]]`
Comment on lines +6 to +7
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

#469 didn't have a changelog entry

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I guess this was already part of 24.3.0? In that case, I'd just add this entry there retroactively, and maybe add a comment that the changelog entry was missing to the latest version.

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

No, it hasn't been included in any release yet

* Y065: Don't use bare `Incomplete` in parameter and return annotations.

Bugfixes:
* Y090: Fix false positive for `tuple[Unpack[Ts]]`.
Expand Down
Loading