summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPierre Sassoulas <pierre.sassoulas@gmail.com>2021-06-29 17:39:20 +0200
committerPierre Sassoulas <pierre.sassoulas@gmail.com>2021-06-29 18:17:19 +0200
commitc3977dfed03cf91a1a7abc0a1ece29590f4caed0 (patch)
treefdc65c289a194b0c9963a81919105506d3ef0530
parent0b024ba6333041d5ffa21d67577ec85e53fc06fe (diff)
downloadastroid-git-c3977dfed03cf91a1a7abc0a1ece29590f4caed0.tar.gz
Bump astroid to 2.6.1, update changelogv2.6.1
-rw-r--r--ChangeLog8
-rw-r--r--astroid/__pkginfo__.py2
-rw-r--r--astroid/as_string.py2
-rw-r--r--astroid/brain/brain_typing.py2
-rw-r--r--astroid/node_classes.py2
-rw-r--r--astroid/raw_building.py2
-rw-r--r--astroid/test_utils.py2
-rw-r--r--tbump.toml2
-rw-r--r--tests/unittest_brain.py2
-rw-r--r--tests/unittest_raw_building.py2
-rw-r--r--tests/unittest_regrtest.py2
11 files changed, 17 insertions, 11 deletions
diff --git a/ChangeLog b/ChangeLog
index 896db23d..4d36168a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -8,10 +8,16 @@ Release Date: TBA
-What's New in astroid 2.6.1?
+What's New in astroid 2.6.2?
============================
Release Date: TBA
+
+
+What's New in astroid 2.6.1?
+============================
+Release Date: 2021-06-29
+
* Fix issue with ``TypedDict`` for Python 3.9+
Closes PyCQA/pylint#4610
diff --git a/astroid/__pkginfo__.py b/astroid/__pkginfo__.py
index f43faa97..4427f736 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/master/LICENSE
-__version__ = "2.7.0-dev0"
+__version__ = "2.6.1"
version = __version__
diff --git a/astroid/as_string.py b/astroid/as_string.py
index e1fa3b5c..2ce20207 100644
--- a/astroid/as_string.py
+++ b/astroid/as_string.py
@@ -13,8 +13,8 @@
# Copyright (c) 2018 Nick Drozd <nicholasdrozd@gmail.com>
# Copyright (c) 2019 Alex Hall <alex.mojaki@gmail.com>
# Copyright (c) 2019 Hugo van Kemenade <hugovk@users.noreply.github.com>
-# Copyright (c) 2021 Marc Mueller <30130371+cdce8p@users.noreply.github.com>
# Copyright (c) 2021 Pierre Sassoulas <pierre.sassoulas@gmail.com>
+# Copyright (c) 2021 Marc Mueller <30130371+cdce8p@users.noreply.github.com>
# Copyright (c) 2021 pre-commit-ci[bot] <bot@noreply.github.com>
# Licensed under the LGPL: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html
diff --git a/astroid/brain/brain_typing.py b/astroid/brain/brain_typing.py
index 5a5b678d..39169dc3 100644
--- a/astroid/brain/brain_typing.py
+++ b/astroid/brain/brain_typing.py
@@ -5,8 +5,8 @@
# Copyright (c) 2017 Ɓukasz Rogalski <rogalski.91@gmail.com>
# Copyright (c) 2017 David Euresti <github@euresti.com>
# Copyright (c) 2018 Bryce Guinta <bryce.paul.guinta@gmail.com>
-# Copyright (c) 2021 Pierre Sassoulas <pierre.sassoulas@gmail.com>
# Copyright (c) 2021 Marc Mueller <30130371+cdce8p@users.noreply.github.com>
+# Copyright (c) 2021 Pierre Sassoulas <pierre.sassoulas@gmail.com>
# Copyright (c) 2021 hippo91 <guillaume.peillex@gmail.com>
"""Astroid hooks for typing.py support."""
diff --git a/astroid/node_classes.py b/astroid/node_classes.py
index c933af5b..179bc17c 100644
--- a/astroid/node_classes.py
+++ b/astroid/node_classes.py
@@ -23,8 +23,8 @@
# Copyright (c) 2019 kavins14 <kavinsingh@hotmail.com>
# Copyright (c) 2020 Raphael Gaschignard <raphael@rtpg.co>
# Copyright (c) 2020 Bryce Guinta <bryce.guinta@protonmail.com>
-# Copyright (c) 2021 Marc Mueller <30130371+cdce8p@users.noreply.github.com>
# Copyright (c) 2021 Pierre Sassoulas <pierre.sassoulas@gmail.com>
+# Copyright (c) 2021 Marc Mueller <30130371+cdce8p@users.noreply.github.com>
# Copyright (c) 2021 Andrew Haigh <hello@nelf.in>
# Copyright (c) 2021 Federico Bond <federicobond@gmail.com>
diff --git a/astroid/raw_building.py b/astroid/raw_building.py
index f5453d66..19c4b47c 100644
--- a/astroid/raw_building.py
+++ b/astroid/raw_building.py
@@ -13,8 +13,8 @@
# Copyright (c) 2020-2021 hippo91 <guillaume.peillex@gmail.com>
# Copyright (c) 2020 Becker Awqatty <bawqatty@mide.com>
# Copyright (c) 2020 Robin Jarry <robin.jarry@6wind.com>
-# Copyright (c) 2021 Marc Mueller <30130371+cdce8p@users.noreply.github.com>
# Copyright (c) 2021 Pierre Sassoulas <pierre.sassoulas@gmail.com>
+# Copyright (c) 2021 Marc Mueller <30130371+cdce8p@users.noreply.github.com>
# Copyright (c) 2021 Andrew Haigh <hello@nelf.in>
# Licensed under the LGPL: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html
diff --git a/astroid/test_utils.py b/astroid/test_utils.py
index 208e7c66..915f17cd 100644
--- a/astroid/test_utils.py
+++ b/astroid/test_utils.py
@@ -5,8 +5,8 @@
# Copyright (c) 2016 Jakub Wilk <jwilk@jwilk.net>
# Copyright (c) 2018 Anthony Sottile <asottile@umich.edu>
# Copyright (c) 2020-2021 hippo91 <guillaume.peillex@gmail.com>
-# Copyright (c) 2021 Andrew Haigh <hello@nelf.in>
# Copyright (c) 2021 Pierre Sassoulas <pierre.sassoulas@gmail.com>
+# Copyright (c) 2021 Andrew Haigh <hello@nelf.in>
# 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
diff --git a/tbump.toml b/tbump.toml
index 098c3e0c..6200166f 100644
--- a/tbump.toml
+++ b/tbump.toml
@@ -1,7 +1,7 @@
github_url = "https://github.com/PyCQA/astroid"
[version]
-current = "2.7.0-dev0"
+current = "2.6.1"
regex = '''
^(?P<major>0|[1-9]\d*)
\.
diff --git a/tests/unittest_brain.py b/tests/unittest_brain.py
index dcce9d91..fab82c57 100644
--- a/tests/unittest_brain.py
+++ b/tests/unittest_brain.py
@@ -24,10 +24,10 @@
# Copyright (c) 2019 Grygorii Iermolenko <gyermolenko@gmail.com>
# Copyright (c) 2020 David Gilman <davidgilman1@gmail.com>
# Copyright (c) 2020 Peter Kolbus <peter.kolbus@gmail.com>
+# Copyright (c) 2021 Marc Mueller <30130371+cdce8p@users.noreply.github.com>
# Copyright (c) 2021 Pierre Sassoulas <pierre.sassoulas@gmail.com>
# Copyright (c) 2021 Andrew Haigh <hello@nelf.in>
# Copyright (c) 2021 Artsiom Kaval <lezeroq@gmail.com>
-# Copyright (c) 2021 Marc Mueller <30130371+cdce8p@users.noreply.github.com>
# Copyright (c) 2021 Damien Baty <damien@damienbaty.com>
# Licensed under the LGPL: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html
diff --git a/tests/unittest_raw_building.py b/tests/unittest_raw_building.py
index 7ea8a120..c52fce41 100644
--- a/tests/unittest_raw_building.py
+++ b/tests/unittest_raw_building.py
@@ -7,8 +7,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 Marc Mueller <30130371+cdce8p@users.noreply.github.com>
# Copyright (c) 2021 Pierre Sassoulas <pierre.sassoulas@gmail.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
# For details: https://github.com/PyCQA/astroid/blob/master/LICENSE
diff --git a/tests/unittest_regrtest.py b/tests/unittest_regrtest.py
index 7a5723d4..7f0eb886 100644
--- a/tests/unittest_regrtest.py
+++ b/tests/unittest_regrtest.py
@@ -10,8 +10,8 @@
# Copyright (c) 2019, 2021 hippo91 <guillaume.peillex@gmail.com>
# Copyright (c) 2019 Ashley Whetter <ashley@awhetter.co.uk>
# Copyright (c) 2020 David Gilman <davidgilman1@gmail.com>
-# Copyright (c) 2021 Andrew Haigh <hello@nelf.in>
# Copyright (c) 2021 Pierre Sassoulas <pierre.sassoulas@gmail.com>
+# Copyright (c) 2021 Andrew Haigh <hello@nelf.in>
# Licensed under the LGPL: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html
# For details: https://github.com/PyCQA/astroid/blob/master/LICENSE