summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog14
-rw-r--r--astroid/__pkginfo__.py2
-rw-r--r--tbump.toml2
-rw-r--r--tests/unittest_nodes.py2
-rw-r--r--tests/unittest_object_model.py2
-rw-r--r--tests/unittest_protocols.py2
6 files changed, 18 insertions, 6 deletions
diff --git a/ChangeLog b/ChangeLog
index 831fb601..8572ecdd 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -2,10 +2,22 @@
astroid's ChangeLog
===================
-What's New in astroid 2.9.0?
+What's New in astroid 2.10.0?
+=============================
+Release date: TBA
+
+
+
+What's New in astroid 2.9.1?
============================
Release date: TBA
+
+
+What's New in astroid 2.9.0?
+============================
+Release date: 2021-11-21
+
* Add ``end_lineno`` and ``end_col_offset`` attributes to astroid nodes.
* Always treat ``__class_getitem__`` as a classmethod.
diff --git a/astroid/__pkginfo__.py b/astroid/__pkginfo__.py
index 493c26a0..d9e016ad 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.9.0-dev0"
+__version__ = "2.9.0"
version = __version__
diff --git a/tbump.toml b/tbump.toml
index 39c8bb0c..91309a98 100644
--- a/tbump.toml
+++ b/tbump.toml
@@ -1,7 +1,7 @@
github_url = "https://github.com/PyCQA/astroid"
[version]
-current = "2.9.0-dev0"
+current = "2.9.0"
regex = '''
^(?P<major>0|[1-9]\d*)
\.
diff --git a/tests/unittest_nodes.py b/tests/unittest_nodes.py
index 8c860eac..2b8bad2e 100644
--- a/tests/unittest_nodes.py
+++ b/tests/unittest_nodes.py
@@ -16,10 +16,10 @@
# Copyright (c) 2019 Alex Hall <alex.mojaki@gmail.com>
# Copyright (c) 2019 Hugo van Kemenade <hugovk@users.noreply.github.com>
# Copyright (c) 2020 David Gilman <davidgilman1@gmail.com>
+# Copyright (c) 2021 Marc Mueller <30130371+cdce8p@users.noreply.github.com>
# Copyright (c) 2021 Daniël van Noord <13665637+DanielNoord@users.noreply.github.com>
# Copyright (c) 2021 Pierre Sassoulas <pierre.sassoulas@gmail.com>
# Copyright (c) 2021 René Fritze <47802+renefritze@users.noreply.github.com>
-# Copyright (c) 2021 Marc Mueller <30130371+cdce8p@users.noreply.github.com>
# Copyright (c) 2021 Federico Bond <federicobond@gmail.com>
# Copyright (c) 2021 hippo91 <guillaume.peillex@gmail.com>
diff --git a/tests/unittest_object_model.py b/tests/unittest_object_model.py
index f949007e..81513d37 100644
--- a/tests/unittest_object_model.py
+++ b/tests/unittest_object_model.py
@@ -4,8 +4,8 @@
# Copyright (c) 2018 Bryce Guinta <bryce.paul.guinta@gmail.com>
# Copyright (c) 2019 Ashley Whetter <ashley@awhetter.co.uk>
# Copyright (c) 2020 David Gilman <davidgilman1@gmail.com>
-# Copyright (c) 2021 Keichi Takahashi <keichi.t@me.com>
# Copyright (c) 2021 Pierre Sassoulas <pierre.sassoulas@gmail.com>
+# Copyright (c) 2021 Keichi Takahashi <keichi.t@me.com>
# Copyright (c) 2021 Marc Mueller <30130371+cdce8p@users.noreply.github.com>
# Copyright (c) 2021 Andrew Haigh <hello@nelf.in>
# Copyright (c) 2021 hippo91 <guillaume.peillex@gmail.com>
diff --git a/tests/unittest_protocols.py b/tests/unittest_protocols.py
index b545b205..78626ece 100644
--- a/tests/unittest_protocols.py
+++ b/tests/unittest_protocols.py
@@ -6,8 +6,8 @@
# Copyright (c) 2019 Ashley Whetter <ashley@awhetter.co.uk>
# Copyright (c) 2020-2021 hippo91 <guillaume.peillex@gmail.com>
# Copyright (c) 2020 David Gilman <davidgilman1@gmail.com>
-# Copyright (c) 2021 Daniël van Noord <13665637+DanielNoord@users.noreply.github.com>
# Copyright (c) 2021 Pierre Sassoulas <pierre.sassoulas@gmail.com>
+# Copyright (c) 2021 Daniël van Noord <13665637+DanielNoord@users.noreply.github.com>
# Copyright (c) 2021 Marc Mueller <30130371+cdce8p@users.noreply.github.com>
# Licensed under the LGPL: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html