Skip to content

Commit 101aed9

Browse files
shadchinPierre-Sassoulas
authored andcommitted
Bump astroid to 2.9.2, update changelog
1 parent c44b1de commit 101aed9

30 files changed

+33
-30
lines changed

ChangeLog

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,12 @@ Release date: TBA
1010

1111
What's New in astroid 2.9.2?
1212
============================
13-
Release date: TBA
13+
Release date: 2022-01-04
1414

15+
* Fixed regression in ``astroid.scoped_nodes`` where ```_is_metaclass``
16+
was not accessible anymore.
1517

18+
Closes #1325
1619

1720
What's New in astroid 2.9.1?
1821
============================

astroid/__pkginfo__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,5 +24,5 @@
2424
# Licensed under the LGPL: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html
2525
# For details: https://github.com/PyCQA/astroid/blob/main/LICENSE
2626

27-
__version__ = "2.9.2-dev0"
27+
__version__ = "2.9.2"
2828
version = __version__

astroid/arguments.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
# Copyright (c) 2018 Nick Drozd <[email protected]>
55
# Copyright (c) 2018 Anthony Sottile <[email protected]>
66
# Copyright (c) 2020 hippo91 <[email protected]>
7-
# Copyright (c) 2021 Tushar Sadhwani <[email protected]>
87
# Copyright (c) 2021 Pierre Sassoulas <[email protected]>
8+
# Copyright (c) 2021 Tushar Sadhwani <[email protected]>
99
# Copyright (c) 2021 David Liu <[email protected]>
1010
# Copyright (c) 2021 Marc Mueller <[email protected]>
1111

astroid/bases.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313
# Copyright (c) 2018 Bryce Guinta <[email protected]>
1414
# Copyright (c) 2018 Daniel Colascione <[email protected]>
1515
# Copyright (c) 2019 Hugo van Kemenade <[email protected]>
16-
# Copyright (c) 2021 Tushar Sadhwani <[email protected]>
1716
# Copyright (c) 2021 Pierre Sassoulas <[email protected]>
17+
# Copyright (c) 2021 Tushar Sadhwani <[email protected]>
1818
# Copyright (c) 2021 pre-commit-ci[bot] <[email protected]>
1919
# Copyright (c) 2021 Daniël van Noord <[email protected]>
2020
# Copyright (c) 2021 David Liu <[email protected]>

astroid/brain/brain_collections.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
# Copyright (c) 2018 Ioana Tagirta <[email protected]>
55
# Copyright (c) 2019 Hugo van Kemenade <[email protected]>
66
# Copyright (c) 2020-2021 hippo91 <[email protected]>
7-
# Copyright (c) 2021 John Belmonte <[email protected]>
87
# Copyright (c) 2021 Pierre Sassoulas <[email protected]>
8+
# Copyright (c) 2021 John Belmonte <[email protected]>
99
# Copyright (c) 2021 Marc Mueller <[email protected]>
1010

1111
# Licensed under the LGPL: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html

astroid/brain/brain_namedtuple_enum.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@
1414
# Copyright (c) 2019 Ashley Whetter <[email protected]>
1515
# Copyright (c) 2020 hippo91 <[email protected]>
1616
# Copyright (c) 2020 Ram Rachum <[email protected]>
17-
# Copyright (c) 2021 Daniël van Noord <[email protected]>
1817
# Copyright (c) 2021 Pierre Sassoulas <[email protected]>
18+
# Copyright (c) 2021 Daniël van Noord <[email protected]>
1919
# Copyright (c) 2021 Dimitri Prybysh <[email protected]>
2020
# Copyright (c) 2021 David Liu <[email protected]>
2121
# Copyright (c) 2021 pre-commit-ci[bot] <[email protected]>

astroid/brain/brain_numpy_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Copyright (c) 2019-2021 hippo91 <[email protected]>
22
# Copyright (c) 2019-2020 Claudiu Popa <[email protected]>
3-
# Copyright (c) 2021 Nick Drozd <[email protected]>
43
# Copyright (c) 2021 Pierre Sassoulas <[email protected]>
4+
# Copyright (c) 2021 Nick Drozd <[email protected]>
55
# Copyright (c) 2021 Marc Mueller <[email protected]>
66

77
# Licensed under the LGPL: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html

astroid/brain/brain_typing.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
# Copyright (c) 2017 Łukasz Rogalski <[email protected]>
66
# Copyright (c) 2017 David Euresti <[email protected]>
77
# Copyright (c) 2018 Bryce Guinta <[email protected]>
8-
# Copyright (c) 2021 Daniël van Noord <[email protected]>
98
# Copyright (c) 2021 Pierre Sassoulas <[email protected]>
9+
# Copyright (c) 2021 Daniël van Noord <[email protected]>
1010
# Copyright (c) 2021 Redoubts <[email protected]>
1111
# Copyright (c) 2021 Marc Mueller <[email protected]>
1212
# Copyright (c) 2021 Tim Martin <[email protected]>

astroid/builder.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@
88
# Copyright (c) 2017 Łukasz Rogalski <[email protected]>
99
# Copyright (c) 2018 Anthony Sottile <[email protected]>
1010
# Copyright (c) 2020-2021 hippo91 <[email protected]>
11+
# Copyright (c) 2021 Pierre Sassoulas <[email protected]>
1112
# Copyright (c) 2021 Tushar Sadhwani <[email protected]>
1213
# Copyright (c) 2021 Daniël van Noord <[email protected]>
1314
# Copyright (c) 2021 Gregory P. Smith <[email protected]>
1415
# Copyright (c) 2021 Kian Meng, Ang <[email protected]>
15-
# Copyright (c) 2021 Pierre Sassoulas <[email protected]>
1616
# Copyright (c) 2021 Marc Mueller <[email protected]>
1717
# Copyright (c) 2021 Andrew Haigh <[email protected]>
1818

astroid/context.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
# Copyright (c) 2018 Nick Drozd <[email protected]>
55
# Copyright (c) 2019-2021 hippo91 <[email protected]>
66
# Copyright (c) 2020 Bryce Guinta <[email protected]>
7-
# Copyright (c) 2021 Kian Meng, Ang <[email protected]>
87
# Copyright (c) 2021 Pierre Sassoulas <[email protected]>
8+
# Copyright (c) 2021 Kian Meng, Ang <[email protected]>
99
# Copyright (c) 2021 Daniël van Noord <[email protected]>
1010
# Copyright (c) 2021 David Liu <[email protected]>
1111
# Copyright (c) 2021 Marc Mueller <[email protected]>

0 commit comments

Comments
 (0)