summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog15
-rw-r--r--astroid/__pkginfo__.py2
-rw-r--r--astroid/bases.py2
-rw-r--r--tbump.toml2
4 files changed, 15 insertions, 6 deletions
diff --git a/ChangeLog b/ChangeLog
index 45c9b677..aa2fe054 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -6,15 +6,24 @@ What's New in astroid 2.8.0?
============================
Release date: TBA
-* ``astroid.const.BUILTINS`` and ``astroid.bases.BUILTINS`` have been removed,
- simply replace this by the string 'builtins' for better performances.
-What's New in astroid 2.7.2?
+
+What's New in astroid 2.7.3?
============================
Release date: TBA
+
+
+What's New in astroid 2.7.2?
+============================
+Release date: 2021-08-20
+
* ``BaseContainer`` is now public, and will replace ``_BaseContainer`` completely in astroid 3.0.
+* ``astroid.const.BUILTINS`` and ``astroid.bases.BUILTINS`` are not used internally anymore
+ and will be removed in astroid 3.0. Simply replace this by the string 'builtins' for better
+ performances and clarity.
+
* Add inference for dataclass initializer method.
Closes PyCQA/pylint#3201
diff --git a/astroid/__pkginfo__.py b/astroid/__pkginfo__.py
index 425f3378..b6777348 100644
--- a/astroid/__pkginfo__.py
+++ b/astroid/__pkginfo__.py
@@ -24,5 +24,5 @@
# Licensed under the LGPL: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html
# For details: https://github.com/PyCQA/astroid/blob/main/LICENSE
-__version__ = "2.7.1"
+__version__ = "2.7.2"
version = __version__
diff --git a/astroid/bases.py b/astroid/bases.py
index 0db897fc..bef2947f 100644
--- a/astroid/bases.py
+++ b/astroid/bases.py
@@ -7,10 +7,10 @@
# Copyright (c) 2015 Florian Bruhin <me@the-compiler.org>
# Copyright (c) 2016-2017 Derek Gustafson <degustaf@gmail.com>
# Copyright (c) 2017 Calen Pennington <calen.pennington@gmail.com>
+# Copyright (c) 2018-2019 Nick Drozd <nicholasdrozd@gmail.com>
# Copyright (c) 2018-2019 hippo91 <guillaume.peillex@gmail.com>
# Copyright (c) 2018 Ville Skyttä <ville.skytta@iki.fi>
# Copyright (c) 2018 Bryce Guinta <bryce.paul.guinta@gmail.com>
-# Copyright (c) 2018 Nick Drozd <nicholasdrozd@gmail.com>
# Copyright (c) 2018 Daniel Colascione <dancol@dancol.org>
# Copyright (c) 2019 Hugo van Kemenade <hugovk@users.noreply.github.com>
# Copyright (c) 2021 Pierre Sassoulas <pierre.sassoulas@gmail.com>
diff --git a/tbump.toml b/tbump.toml
index 9ef5a670..c1e193cb 100644
--- a/tbump.toml
+++ b/tbump.toml
@@ -1,7 +1,7 @@
github_url = "https://github.com/PyCQA/astroid"
[version]
-current = "2.7.1"
+current = "2.7.2"
regex = '''
^(?P<major>0|[1-9]\d*)
\.