Skip to content

Commit 8e6a446

Browse files
Bump astroid to 2.8.5, update changelog
1 parent dac99b9 commit 8e6a446

12 files changed

+19
-12
lines changed

ChangeLog

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,16 @@ Release date: TBA
88

99

1010

11-
What's New in astroid 2.8.5?
11+
What's New in astroid 2.8.6?
1212
============================
1313
Release date: TBA
1414

15+
16+
17+
What's New in astroid 2.8.5?
18+
============================
19+
Release date: 2021-11-12
20+
1521
* Use more permissive versions for the ``typed-ast`` dependencie (<2.0 instead of <1.5)
1622

1723
Closes #1237

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.8.5-dev0"
27+
__version__ = "2.8.5"
2828
version = __version__

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 Redoubts <[email protected]>
98
# Copyright (c) 2021 Pierre Sassoulas <[email protected]>
9+
# Copyright (c) 2021 Redoubts <[email protected]>
1010
# Copyright (c) 2021 Marc Mueller <[email protected]>
1111
# Copyright (c) 2021 Tim Martin <[email protected]>
1212
# Copyright (c) 2021 hippo91 <[email protected]>

astroid/decorators.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@
99
# Copyright (c) 2018 Bryce Guinta <[email protected]>
1010
# Copyright (c) 2020-2021 hippo91 <[email protected]>
1111
# Copyright (c) 2020 Ram Rachum <[email protected]>
12+
# Copyright (c) 2021 Marc Mueller <[email protected]>
1213
# Copyright (c) 2021 Pierre Sassoulas <[email protected]>
1314
# Copyright (c) 2021 Daniël van Noord <[email protected]>
14-
# Copyright (c) 2021 Marc Mueller <[email protected]>
1515

1616
# Licensed under the LGPL: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html
1717
# For details: https://github.com/PyCQA/astroid/blob/main/LICENSE

astroid/exceptions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
# Copyright (c) 2016 Derek Gustafson <[email protected]>
66
# Copyright (c) 2018 Bryce Guinta <[email protected]>
77
# Copyright (c) 2020-2021 hippo91 <[email protected]>
8-
# Copyright (c) 2021 Pierre Sassoulas <[email protected]>
98
# Copyright (c) 2021 Daniël van Noord <[email protected]>
9+
# Copyright (c) 2021 Pierre Sassoulas <[email protected]>
1010
# Copyright (c) 2021 Marc Mueller <[email protected]>
1111
# Copyright (c) 2021 Andrew Haigh <[email protected]>
1212

astroid/helpers.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
# Copyright (c) 2020 Simon Hewitt <[email protected]>
66
# Copyright (c) 2020 Bryce Guinta <[email protected]>
77
# Copyright (c) 2020 Ram Rachum <[email protected]>
8+
# Copyright (c) 2021 Daniël van Noord <[email protected]>
89
# Copyright (c) 2021 Pierre Sassoulas <[email protected]>
910
# Copyright (c) 2021 David Liu <[email protected]>
1011
# Copyright (c) 2021 Marc Mueller <[email protected]>

astroid/nodes/node_classes.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@
2424
# Copyright (c) 2020 Raphael Gaschignard <[email protected]>
2525
# Copyright (c) 2020 Bryce Guinta <[email protected]>
2626
# Copyright (c) 2021 Daniël van Noord <[email protected]>
27-
# Copyright (c) 2021 Pierre Sassoulas <[email protected]>
2827
# Copyright (c) 2021 Marc Mueller <[email protected]>
28+
# Copyright (c) 2021 Pierre Sassoulas <[email protected]>
2929
# Copyright (c) 2021 David Liu <[email protected]>
3030
# Copyright (c) 2021 Alphadelta14 <[email protected]>
3131
# Copyright (c) 2021 Andrew Haigh <[email protected]>

tbump.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
github_url = "https://github.com/PyCQA/astroid"
22

33
[version]
4-
current = "2.8.5-dev0"
4+
current = "2.8.5"
55
regex = '''
66
^(?P<major>0|[1-9]\d*)
77
\.

tests/unittest_brain.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,12 @@
2424
# Copyright (c) 2019 Grygorii Iermolenko <[email protected]>
2525
# Copyright (c) 2020 David Gilman <[email protected]>
2626
# Copyright (c) 2020 Peter Kolbus <[email protected]>
27-
# Copyright (c) 2021 Joshua Cannon <joshua.cannon@ni.com>
27+
# Copyright (c) 2021 Daniël van Noord <[email protected].com>
2828
# Copyright (c) 2021 Pierre Sassoulas <[email protected]>
29+
# Copyright (c) 2021 Joshua Cannon <[email protected]>
2930
# Copyright (c) 2021 Craig Franklin <[email protected]>
3031
# Copyright (c) 2021 Marc Mueller <[email protected]>
3132
# Copyright (c) 2021 Jonathan Striebel <[email protected]>
32-
# Copyright (c) 2021 Daniël van Noord <[email protected]>
3333
# Copyright (c) 2021 Dimitri Prybysh <[email protected]>
3434
# Copyright (c) 2021 David Liu <[email protected]>
3535
# Copyright (c) 2021 pre-commit-ci[bot] <[email protected]>

tests/unittest_builder.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212
# Copyright (c) 2019 Ashley Whetter <[email protected]>
1313
# Copyright (c) 2019 Hugo van Kemenade <[email protected]>
1414
# Copyright (c) 2020-2021 hippo91 <[email protected]>
15-
# Copyright (c) 2021 Pierre Sassoulas <[email protected]>
1615
# Copyright (c) 2021 Daniël van Noord <[email protected]>
16+
# Copyright (c) 2021 Pierre Sassoulas <[email protected]>
1717
# Copyright (c) 2021 Marc Mueller <[email protected]>
1818
# Copyright (c) 2021 Andrew Haigh <[email protected]>
1919
# Copyright (c) 2021 pre-commit-ci[bot] <[email protected]>

tests/unittest_inference.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@
2626
# Copyright (c) 2020 Peter Kolbus <[email protected]>
2727
# Copyright (c) 2020 Karthikeyan Singaravelan <[email protected]>
2828
# Copyright (c) 2020 Bryce Guinta <[email protected]>
29+
# Copyright (c) 2021 Marc Mueller <[email protected]>
2930
# Copyright (c) 2021 Pierre Sassoulas <[email protected]>
3031
# Copyright (c) 2021 Daniël van Noord <[email protected]>
31-
# Copyright (c) 2021 Marc Mueller <[email protected]>
3232
# Copyright (c) 2021 Andrew Haigh <[email protected]>
3333
# Copyright (c) 2021 doranid <[email protected]>
3434
# Copyright (c) 2021 Francis Charette Migneault <[email protected]>

tests/unittest_regrtest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
# Copyright (c) 2019, 2021 hippo91 <[email protected]>
1111
# Copyright (c) 2019 Ashley Whetter <[email protected]>
1212
# Copyright (c) 2020 David Gilman <[email protected]>
13-
# Copyright (c) 2021 Pierre Sassoulas <[email protected]>
1413
# Copyright (c) 2021 Daniël van Noord <[email protected]>
14+
# Copyright (c) 2021 Pierre Sassoulas <[email protected]>
1515
# Copyright (c) 2021 Marc Mueller <[email protected]>
1616
# Copyright (c) 2021 Andrew Haigh <[email protected]>
1717

0 commit comments

Comments
 (0)