-
-
Notifications
You must be signed in to change notification settings - Fork 275
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
Bump astroid to 3.0.2, update changelog #2343
Conversation
Codecov Report
Additional details and impacted files@@ Coverage Diff @@
## maintenance/3.0.x #2343 +/- ##
==================================================
Coverage 92.85% 92.86%
==================================================
Files 94 94
Lines 11056 11068 +12
==================================================
+ Hits 10266 10278 +12
Misses 790 790
Flags with carried forward coverage won't be shown. Click here to find out more.
|
__version__ = "3.1.0-dev0" | ||
__version__ = "3.0.2" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Don't worry; the tagged 3.0.1 went out with this correctly as 3.0.1. This was a mistake where instead of amending the merge commit to main, I added a commit to the maintenance branch as discussed here
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Shouldn't this be two commits one with each version then we rebase ? Approving because you probably also thougth of something that work :)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The mistake already happened two months ago. There shouldn't have been "3.1.0-dev0"
on this branch at all, so this squash merge will fix a bug. You might be thinking of going from 3.0.2 -> 3.1.0-dev0 on the main branch.
What's New in astroid 3.0.2?
Release date: 2023-12-12
typing.X
constructs likeTuple[Optional[int], ...]
. This was causing pylint to occasionally omitmessages like
deprecated-typing-alias
.Closes [primer noise]
deprecated-typing-alias
pylint#9220