summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPierre Sassoulas <pierre.sassoulas@gmail.com>2021-04-10 15:58:36 +0200
committerPierre Sassoulas <pierre.sassoulas@gmail.com>2021-04-10 16:13:58 +0200
commit55953b3e433906855d92c42f630be9e4214553d0 (patch)
treee7072fb931c2e7c6dbe5e771cb50bc549490883c
parentcd0f896672049493b2e3cfc87a327c871f8dd329 (diff)
downloadastroid-git-55953b3e433906855d92c42f630be9e4214553d0.tar.gz
Prepare for 2.5.3 releaseastroid-2.5.3
-rw-r--r--ChangeLog2
-rw-r--r--astroid/__pkginfo__.py4
-rw-r--r--astroid/brain/brain_builtin_inference.py1
-rw-r--r--astroid/brain/brain_typing.py1
-rw-r--r--doc/release.md1
5 files changed, 5 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index a321d996..adf58d94 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -9,7 +9,7 @@ Release Date: TBA
What's New in astroid 2.5.3?
============================
-Release Date: TBA
+Release Date: 2021-04-10
* Takes into account the fact that subscript inferring for a ClassDef may involve __class_getitem__ method
diff --git a/astroid/__pkginfo__.py b/astroid/__pkginfo__.py
index 58c2bfa1..bb3c9fcc 100644
--- a/astroid/__pkginfo__.py
+++ b/astroid/__pkginfo__.py
@@ -27,8 +27,8 @@
"""astroid packaging information"""
# For an official release, use dev_version = None
-numversion = (2, 6, 0)
-dev_version = "0"
+numversion = (2, 5, 3)
+dev_version = None
version = ".".join(str(num) for num in numversion)
if dev_version is not None:
diff --git a/astroid/brain/brain_builtin_inference.py b/astroid/brain/brain_builtin_inference.py
index 83e7d3d1..0aac5fdc 100644
--- a/astroid/brain/brain_builtin_inference.py
+++ b/astroid/brain/brain_builtin_inference.py
@@ -11,6 +11,7 @@
# Copyright (c) 2020-2021 hippo91 <guillaume.peillex@gmail.com>
# Copyright (c) 2020 David Gilman <davidgilman1@gmail.com>
# Copyright (c) 2020 Ram Rachum <ram@rachum.com>
+# Copyright (c) 2021 Marc Mueller <30130371+cdce8p@users.noreply.github.com>
# Copyright (c) 2021 Pierre Sassoulas <pierre.sassoulas@gmail.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 9d94ca3e..cf61a60c 100644
--- a/astroid/brain/brain_typing.py
+++ b/astroid/brain/brain_typing.py
@@ -3,6 +3,7 @@
# Copyright (c) 2017 David Euresti <github@euresti.com>
# Copyright (c) 2018 Bryce Guinta <bryce.paul.guinta@gmail.com>
# Copyright (c) 2021 Marc Mueller <30130371+cdce8p@users.noreply.github.com>
+# Copyright (c) 2021 hippo91 <guillaume.peillex@gmail.com>
# Copyright (c) 2021 Pierre Sassoulas <pierre.sassoulas@gmail.com>
"""Astroid hooks for typing.py support."""
diff --git a/doc/release.md b/doc/release.md
index b5151d97..98443df6 100644
--- a/doc/release.md
+++ b/doc/release.md
@@ -8,7 +8,6 @@ So, you want to release the ``X.Y.Z`` version of astroid ?
1. Check if the dependencies of the package are correct
2. Update ``numversion`` in ``__pkginfo__``, ``dev_version`` should also be None when you tag.
3. Put the version numbers, and the release date into the changelog
- 4. Put the release date into the ``What's new`` section.
5. Generate the new copyright notices for this release:
```bash