Skip to content

Commit 55953b3

Browse files
Prepare for 2.5.3 release
1 parent cd0f896 commit 55953b3

File tree

5 files changed

+5
-4
lines changed

5 files changed

+5
-4
lines changed

ChangeLog

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Release Date: TBA
99

1010
What's New in astroid 2.5.3?
1111
============================
12-
Release Date: TBA
12+
Release Date: 2021-04-10
1313

1414
* Takes into account the fact that subscript inferring for a ClassDef may involve __class_getitem__ method
1515

astroid/__pkginfo__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@
2727
"""astroid packaging information"""
2828

2929
# For an official release, use dev_version = None
30-
numversion = (2, 6, 0)
31-
dev_version = "0"
30+
numversion = (2, 5, 3)
31+
dev_version = None
3232

3333
version = ".".join(str(num) for num in numversion)
3434
if dev_version is not None:

astroid/brain/brain_builtin_inference.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
# Copyright (c) 2020-2021 hippo91 <[email protected]>
1212
# Copyright (c) 2020 David Gilman <[email protected]>
1313
# Copyright (c) 2020 Ram Rachum <[email protected]>
14+
# Copyright (c) 2021 Marc Mueller <[email protected]>
1415
# Copyright (c) 2021 Pierre Sassoulas <[email protected]>
1516

1617
# Licensed under the LGPL: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html

astroid/brain/brain_typing.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
# Copyright (c) 2017 David Euresti <[email protected]>
44
# Copyright (c) 2018 Bryce Guinta <[email protected]>
55
# Copyright (c) 2021 Marc Mueller <[email protected]>
6+
# Copyright (c) 2021 hippo91 <[email protected]>
67
# Copyright (c) 2021 Pierre Sassoulas <[email protected]>
78

89
"""Astroid hooks for typing.py support."""

doc/release.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ So, you want to release the ``X.Y.Z`` version of astroid ?
88
1. Check if the dependencies of the package are correct
99
2. Update ``numversion`` in ``__pkginfo__``, ``dev_version`` should also be None when you tag.
1010
3. Put the version numbers, and the release date into the changelog
11-
4. Put the release date into the ``What's new`` section.
1211
5. Generate the new copyright notices for this release:
1312

1413
```bash

0 commit comments

Comments
 (0)