diff options
| author | Marc Mueller <30130371+cdce8p@users.noreply.github.com> | 2023-01-31 15:39:46 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-01-31 15:39:46 +0100 |
| commit | b644c1e834b491b465c5d61ead0373342029621a (patch) | |
| tree | 369e2d61818e555e3ced8da46c9e352d0f7e6096 | |
| parent | 01b09cb37d88eeb91044bba6d01eb6c2057e44f2 (diff) | |
| download | astroid-git-2.14.0.tar.gz | |
Release 2.14.0 (#1998)v2.14.0
| -rw-r--r-- | CONTRIBUTORS.txt | 1 | ||||
| -rw-r--r-- | ChangeLog | 20 | ||||
| -rw-r--r-- | astroid/__pkginfo__.py | 2 | ||||
| -rw-r--r-- | tbump.toml | 2 |
4 files changed, 18 insertions, 7 deletions
diff --git a/CONTRIBUTORS.txt b/CONTRIBUTORS.txt index 457d40cf..4784b5f0 100644 --- a/CONTRIBUTORS.txt +++ b/CONTRIBUTORS.txt @@ -182,6 +182,7 @@ Contributors - Alexander Scheel <alexander.m.scheel@gmail.com> - Alexander Presnyakov <flagist0@gmail.com> - Ahmed Azzaoui <ahmed.azzaoui@engie.com> +- Ben Elliston <bje@air.net.au> Co-Author --------- @@ -2,21 +2,31 @@ astroid's ChangeLog =================== -What's New in astroid 2.14.0? +What's New in astroid 2.15.0? ============================= Release date: TBA -* Add support for inferring binary union types added in Python 3.10. - - Refs PyCQA/pylint#8119 -What's New in astroid 2.13.5? +What's New in astroid 2.14.1? ============================= Release date: TBA +What's New in astroid 2.14.0? +============================= +Release date: 2023-01-31 + +* Add support for inferring binary union types added in Python 3.10. + + Refs PyCQA/pylint#8119 + +* Capture and log messages emitted when inspecting a module for astroid. + + Closes #1904 + + What's New in astroid 2.13.4? ============================= Release date: 2023-01-31 diff --git a/astroid/__pkginfo__.py b/astroid/__pkginfo__.py index 01adbe7a..435d64c7 100644 --- a/astroid/__pkginfo__.py +++ b/astroid/__pkginfo__.py @@ -2,5 +2,5 @@ # For details: https://github.com/PyCQA/astroid/blob/main/LICENSE # Copyright (c) https://github.com/PyCQA/astroid/blob/main/CONTRIBUTORS.txt -__version__ = "2.14.0-dev0" +__version__ = "2.14.0" version = __version__ @@ -1,7 +1,7 @@ github_url = "https://github.com/PyCQA/astroid" [version] -current = "2.14.0-dev0" +current = "2.14.0" regex = ''' ^(?P<major>0|[1-9]\d*) \. |
