Skip to content

Commit

Permalink
Prepare for 2.8.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
Pierre-Sassoulas committed Apr 24, 2021
1 parent bcfb46d commit 7dece5b
Show file tree
Hide file tree
Showing 26 changed files with 54 additions and 13 deletions.
25 changes: 25 additions & 0 deletions .copyrite_aliases
Original file line number Diff line number Diff line change
Expand Up @@ -74,5 +74,30 @@
],
"authoritative_mail": "[email protected]",
"name": "Ville Skyttä"
},
{
"mails": [
"[email protected]",
"[email protected]",
"[email protected]"
],
"authoritative_mail": "[email protected]",
"name": "Eli Fine"
},
{
"mails": [
"[email protected]",
"[email protected]"
],
"authoritative_mail": "[email protected]",
"name": "Andreas Finkler"
},
{
"mails": [
"[email protected]",
"[email protected]"
],
"authoritative_mail": "[email protected]",
"name": "Matus Valo"
}
]
2 changes: 1 addition & 1 deletion ChangeLog
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Pylint's ChangeLog

What's New in Pylint 2.8.0?
===========================
Release date: 2021-04-25
Release date: 2021-04-24

* New refactoring message ``consider-using-with``. This message is emitted if resource-allocating functions or methods of the
standard library (like ``open()`` or ``threading.Lock.acquire()``) that can be used as a context manager are called without
Expand Down
2 changes: 1 addition & 1 deletion doc/whatsnew/2.8.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
**************************

:Release: 2.8
:Date: undefined
:Date: 2021-04-24

Summary -- Release highlights
=============================
Expand Down
2 changes: 1 addition & 1 deletion pylint/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# Copyright (c) 2014 Arun Persaud <[email protected]>
# Copyright (c) 2015 Ionel Cristian Maries <[email protected]>
# Copyright (c) 2018 Nick Drozd <[email protected]>
# Copyright (c) 2020 Pierre Sassoulas <[email protected]>
# Copyright (c) 2020-2021 Pierre Sassoulas <[email protected]>
# Copyright (c) 2021 Marc Mueller <[email protected]>

# Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html
Expand Down
2 changes: 1 addition & 1 deletion pylint/__pkginfo__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
__version__ = "2.8.0"
# For an official release, use 'alpha_version = False' and 'dev_version = None'
alpha_version: bool = False # Release will be an alpha version if True (ex: '1.2.3a6')
dev_version: Optional[int] = 1
dev_version: Optional[int] = None

if dev_version is not None:
if alpha_version:
Expand Down
4 changes: 2 additions & 2 deletions pylint/checkers/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@
# Copyright (c) 2018-2021 Pierre Sassoulas <[email protected]>
# Copyright (c) 2018 ssolanki <[email protected]>
# Copyright (c) 2019 Bruno P. Kinoshita <[email protected]>
# Copyright (c) 2020-2021 hippo91 <[email protected]>
# Copyright (c) 2020 Frank Harrison <[email protected]>
# Copyright (c) 2020 hippo91 <[email protected]>
# Copyright (c) 2021 Matus Valo <[email protected]>
# Copyright (c) 2021 Matus Valo <[email protected]>

# Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html
# For details: https://github.com/PyCQA/pylint/blob/master/LICENSE
Expand Down
3 changes: 2 additions & 1 deletion pylint/checkers/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
# Copyright (c) 2016 Yannack <[email protected]>
# Copyright (c) 2016 Alex Jurkiewicz <[email protected]>
# Copyright (c) 2017, 2019-2021 Pierre Sassoulas <[email protected]>
# Copyright (c) 2017, 2019-2020 hippo91 <[email protected]>
# Copyright (c) 2017, 2019-2021 hippo91 <[email protected]>
# Copyright (c) 2017 danields <[email protected]>
# Copyright (c) 2017 Jacques Kvam <[email protected]>
# Copyright (c) 2017 ttenhoeve-aa <[email protected]>
Expand Down Expand Up @@ -52,6 +52,7 @@
# Copyright (c) 2020 Gabriel R Sezefredo <[email protected]>
# Copyright (c) 2020 Benny <[email protected]>
# Copyright (c) 2020 Anubhav <[email protected]>
# Copyright (c) 2021 Andreas Finkler <[email protected]>
# Copyright (c) 2021 Marc Mueller <[email protected]>
# Copyright (c) 2021 Or Bahari <[email protected]>

Expand Down
3 changes: 2 additions & 1 deletion pylint/checkers/classes.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,9 @@
# Copyright (c) 2019 Andrzej Klajnert <[email protected]>
# Copyright (c) 2019 Pascal Corpet <[email protected]>
# Copyright (c) 2020 GergelyKalmar <[email protected]>
# Copyright (c) 2021 tiagohonorato <[email protected]>
# Copyright (c) 2021 Marc Mueller <[email protected]>
# Copyright (c) 2021 James Sinclair <[email protected]>
# Copyright (c) 2021 tiagohonorato <[email protected]>

# Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html
# For details: https://github.com/PyCQA/pylint/blob/master/LICENSE
Expand Down
1 change: 1 addition & 0 deletions pylint/checkers/format.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@
# Copyright (c) 2019 Nick Drozd <[email protected]>
# Copyright (c) 2019 Hugo van Kemenade <[email protected]>
# Copyright (c) 2020 Raphael Gaschignard <[email protected]>
# Copyright (c) 2021 Marc Mueller <[email protected]>

# Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html
# For details: https://github.com/PyCQA/pylint/blob/master/LICENSE
Expand Down
1 change: 1 addition & 0 deletions pylint/checkers/misc.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
# Copyright (c) 2020 wtracy <[email protected]>
# Copyright (c) 2020 Anthony Sottile <[email protected]>
# Copyright (c) 2020 Benny <[email protected]>
# Copyright (c) 2021 Marc Mueller <[email protected]>
# Copyright (c) 2021 Konstantina Saketou <[email protected]>

# Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html
Expand Down
2 changes: 1 addition & 1 deletion pylint/checkers/raw_metrics.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
# Copyright (c) 2016 Glenn Matthews <[email protected]>
# Copyright (c) 2018 ssolanki <[email protected]>
# Copyright (c) 2019-2021 Pierre Sassoulas <[email protected]>
# Copyright (c) 2020 hippo91 <[email protected]>
# Copyright (c) 2020-2021 hippo91 <[email protected]>
# Copyright (c) 2020 谭九鼎 <[email protected]>

# Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html
Expand Down
2 changes: 1 addition & 1 deletion pylint/checkers/similar.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
# Copyright (c) 2019 Hugo van Kemenade <[email protected]>
# Copyright (c) 2019 Taewon D. Kim <[email protected]>
# Copyright (c) 2020 Frank Harrison <[email protected]>
# Copyright (c) 2020 Eli Fine <eli88fine@gmail.com>
# Copyright (c) 2020 Eli Fine <ejfine@gmail.com>
# Copyright (c) 2020 hippo91 <[email protected]>
# Copyright (c) 2020 Shiv Venkatasubrahmanyam <[email protected]>

Expand Down
1 change: 1 addition & 0 deletions pylint/checkers/spelling.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
# Copyright (c) 2020 Ganden Schaffner <[email protected]>
# Copyright (c) 2020 hippo91 <[email protected]>
# Copyright (c) 2020 Damien Baty <[email protected]>
# Copyright (c) 2021 Andreas Finkler <[email protected]>
# Copyright (c) 2021 Eli Fine <[email protected]>

# Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html
Expand Down
2 changes: 1 addition & 1 deletion pylint/checkers/stdlib.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
# Copyright (c) 2020 hippo91 <[email protected]>
# Copyright (c) 2020 谭九鼎 <[email protected]>
# Copyright (c) 2020 Anthony Sottile <[email protected]>
# Copyright (c) 2021 Matus Valo <matusvalo@gmail.com>
# Copyright (c) 2021 Matus Valo <matusvalo@users.noreply.github.com>

# Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html
# For details: https://github.com/PyCQA/pylint/blob/master/LICENSE
Expand Down
1 change: 1 addition & 0 deletions pylint/checkers/variables.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@
# Copyright (c) 2020 Andrew Simmons <[email protected]>
# Copyright (c) 2020 Anthony Sottile <[email protected]>
# Copyright (c) 2020 Ashley Whetter <[email protected]>
# Copyright (c) 2021 haasea <[email protected]>
# Copyright (c) 2021 Marc Mueller <[email protected]>
# Copyright (c) 2021 Alexander Kapshuna <[email protected]>

Expand Down
1 change: 1 addition & 0 deletions pylint/epylint.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
# Copyright (c) 2019 Hugo van Kemenade <[email protected]>
# Copyright (c) 2020 Damien Baty <[email protected]>
# Copyright (c) 2020 Anthony Sottile <[email protected]>
# Copyright (c) 2021 Andreas Finkler <[email protected]>

# Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html
# For details: https://github.com/PyCQA/pylint/blob/master/LICENSE
Expand Down
1 change: 1 addition & 0 deletions pylint/extensions/comparetozero.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
# Copyright (c) 2019, 2021 Pierre Sassoulas <[email protected]>
# Copyright (c) 2020 hippo91 <[email protected]>
# Copyright (c) 2020 Anthony Sottile <[email protected]>
# Copyright (c) 2021 bernie gray <[email protected]>

# Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html
# For details: https://github.com/PyCQA/pylint/blob/master/LICENSE
Expand Down
1 change: 1 addition & 0 deletions pylint/extensions/confusing_elif.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# Copyright (c) 2021 Pierre Sassoulas <[email protected]>
# Copyright (c) 2021 Andreas Finkler <[email protected]>

# Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html
Expand Down
1 change: 1 addition & 0 deletions pylint/graph.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
# Copyright (c) 2020 Damien Baty <[email protected]>
# Copyright (c) 2020 谭九鼎 <[email protected]>
# Copyright (c) 2020 Benjamin Graham <[email protected]>
# Copyright (c) 2021 Andreas Finkler <[email protected]>
# Copyright (c) 2021 Andrew Howe <[email protected]>

# Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html
Expand Down
1 change: 1 addition & 0 deletions pylint/pyreverse/writer.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
# Copyright (c) 2018 ssolanki <[email protected]>
# Copyright (c) 2019-2021 Pierre Sassoulas <[email protected]>
# Copyright (c) 2019 Kylian <[email protected]>
# Copyright (c) 2021 Andreas Finkler <[email protected]>
# Copyright (c) 2021 Mark Byrne <[email protected]>

# Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html
Expand Down
2 changes: 1 addition & 1 deletion pylint/utils/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
# Copyright (c) 2016 Ashley Whetter <[email protected]>
# Copyright (c) 2016 xmo-odoo <[email protected]>
# Copyright (c) 2017-2021 Pierre Sassoulas <[email protected]>
# Copyright (c) 2017-2018, 2020 hippo91 <[email protected]>
# Copyright (c) 2017-2018, 2020-2021 hippo91 <[email protected]>
# Copyright (c) 2017, 2020 Anthony Sottile <[email protected]>
# Copyright (c) 2017-2018 Bryce Guinta <[email protected]>
# Copyright (c) 2017 Chris Lamb <[email protected]>
Expand Down
1 change: 1 addition & 0 deletions tests/checkers/unittest_format.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
# Copyright (c) 2019 Hugo van Kemenade <[email protected]>
# Copyright (c) 2019 Ashley Whetter <[email protected]>
# Copyright (c) 2020 hippo91 <[email protected]>
# Copyright (c) 2021 Andreas Finkler <[email protected]>

# Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html
# For details: https://github.com/PyCQA/pylint/blob/master/LICENSE
Expand Down
2 changes: 1 addition & 1 deletion tests/checkers/unittest_similar.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
# Copyright (c) 2019 Ashley Whetter <[email protected]>
# Copyright (c) 2019 Taewon D. Kim <[email protected]>
# Copyright (c) 2020 Frank Harrison <[email protected]>
# Copyright (c) 2020 Eli Fine <eli88fine@gmail.com>
# Copyright (c) 2020 Eli Fine <ejfine@gmail.com>
# Copyright (c) 2020 hippo91 <[email protected]>

# Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html
Expand Down
1 change: 1 addition & 0 deletions tests/checkers/unittest_spelling.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
# Copyright (c) 2019 agutole <[email protected]>
# Copyright (c) 2020 Ganden Schaffner <[email protected]>
# Copyright (c) 2020 hippo91 <[email protected]>
# Copyright (c) 2021 Eli Fine <[email protected]>

# Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html
# For details: https://github.com/PyCQA/pylint/blob/master/LICENSE
Expand Down
1 change: 1 addition & 0 deletions tests/extensions/test_confusing_elif.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# Copyright (c) 2021 Pierre Sassoulas <[email protected]>
# Copyright (c) 2021 Andreas Finkler <[email protected]>

# Licensed under the GPL: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html
Expand Down
2 changes: 2 additions & 0 deletions tests/test_self.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@
# Copyright (c) 2020 Pieter Engelbrecht <[email protected]>
# Copyright (c) 2020 Clément Pit-Claudel <[email protected]>
# Copyright (c) 2020 Anthony Sottile <[email protected]>
# Copyright (c) 2021 Andreas Finkler <[email protected]>
# Copyright (c) 2021 chohner <[email protected]>
# Copyright (c) 2021 Marc Mueller <[email protected]>
# Copyright (c) 2021 Louis Sautier <[email protected]>

Expand Down

0 comments on commit 7dece5b

Please sign in to comment.