Skip to content

Commit 5b05832

Browse files
Bump astroid to 2.7.2, update changelog
1 parent 095acc1 commit 5b05832

File tree

4 files changed

+15
-6
lines changed

4 files changed

+15
-6
lines changed

ChangeLog

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,24 @@ What's New in astroid 2.8.0?
66
============================
77
Release date: TBA
88

9-
* ``astroid.const.BUILTINS`` and ``astroid.bases.BUILTINS`` have been removed,
10-
simply replace this by the string 'builtins' for better performances.
119

12-
What's New in astroid 2.7.2?
10+
11+
What's New in astroid 2.7.3?
1312
============================
1413
Release date: TBA
1514

15+
16+
17+
What's New in astroid 2.7.2?
18+
============================
19+
Release date: 2021-08-20
20+
1621
* ``BaseContainer`` is now public, and will replace ``_BaseContainer`` completely in astroid 3.0.
1722

23+
* ``astroid.const.BUILTINS`` and ``astroid.bases.BUILTINS`` are not used internally anymore
24+
and will be removed in astroid 3.0. Simply replace this by the string 'builtins' for better
25+
performances and clarity.
26+
1827
* Add inference for dataclass initializer method.
1928

2029
Closes PyCQA/pylint#3201

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.7.1"
27+
__version__ = "2.7.2"
2828
version = __version__

astroid/bases.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@
77
# Copyright (c) 2015 Florian Bruhin <[email protected]>
88
# Copyright (c) 2016-2017 Derek Gustafson <[email protected]>
99
# Copyright (c) 2017 Calen Pennington <[email protected]>
10+
# Copyright (c) 2018-2019 Nick Drozd <[email protected]>
1011
# Copyright (c) 2018-2019 hippo91 <[email protected]>
1112
# Copyright (c) 2018 Ville Skyttä <[email protected]>
1213
# Copyright (c) 2018 Bryce Guinta <[email protected]>
13-
# Copyright (c) 2018 Nick Drozd <[email protected]>
1414
# Copyright (c) 2018 Daniel Colascione <[email protected]>
1515
# Copyright (c) 2019 Hugo van Kemenade <[email protected]>
1616
# Copyright (c) 2021 Pierre Sassoulas <[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.7.1"
4+
current = "2.7.2"
55
regex = '''
66
^(?P<major>0|[1-9]\d*)
77
\.

0 commit comments

Comments
 (0)