Skip to content

Commit d344953

Browse files
Bump astroid to 2.9.3, update changelog
1 parent a03c07d commit d344953

File tree

5 files changed

+25
-4
lines changed

5 files changed

+25
-4
lines changed

ChangeLog

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,16 @@ What's New in astroid 2.10.0?
77
Release date: TBA
88

99

10-
What's New in astroid 2.9.3?
10+
What's New in astroid 2.9.4?
1111
============================
1212
Release date: TBA
1313

14+
15+
16+
What's New in astroid 2.9.3?
17+
============================
18+
Release date: 2022-01-09
19+
1420
* Fixed regression where packages without a ``__init__.py`` file were
1521
not recognized or imported correctly.
1622

astroid/__pkginfo__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,5 +24,5 @@
2424
# Licensed under the LGPL: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html
2525
# For details: https://github.com/PyCQA/astroid/blob/main/LICENSE
2626

27-
__version__ = "2.9.2"
27+
__version__ = "2.9.3"
2828
version = __version__

doc/release.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,3 +29,17 @@ Check the result and then upgrade the main branch
2929

3030
We move issue that were not done in the next milestone and block release only if it's an
3131
issue labelled as blocker.
32+
33+
## Post release
34+
35+
### Merge tags in main for pre-commit
36+
37+
If the tag you just made is not part of the main branch, merge the tag `vX.Y.Z` in the
38+
main branch by doing a history only merge. It's done in order to signal that this is an
39+
official release tag, and for `pre-commit autoupdate` to works.
40+
41+
```bash
42+
git checkout main
43+
git merge --no-edit --strategy=ours vX.Y.Z
44+
git push
45+
```

tbump.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
github_url = "https://github.com/PyCQA/astroid"
22

33
[version]
4-
current = "2.9.2"
4+
current = "2.9.3"
55
regex = '''
66
^(?P<major>0|[1-9]\d*)
77
\.

tests/unittest_modutils.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,12 @@
1111
# Copyright (c) 2019 markmcclain <[email protected]>
1212
# Copyright (c) 2020-2021 hippo91 <[email protected]>
1313
# Copyright (c) 2020 Peter Kolbus <[email protected]>
14+
# Copyright (c) 2021-2022 Daniël van Noord <[email protected]>
1415
# Copyright (c) 2021 Pierre Sassoulas <[email protected]>
15-
# Copyright (c) 2021 Daniël van Noord <[email protected]>
1616
# Copyright (c) 2021 Marc Mueller <[email protected]>
1717
# Copyright (c) 2021 DudeNr33 <[email protected]>
1818
# Copyright (c) 2021 pre-commit-ci[bot] <[email protected]>
19+
# Copyright (c) 2022 Alexander Shadchin <[email protected]>
1920

2021
# Licensed under the LGPL: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html
2122
# For details: https://github.com/PyCQA/astroid/blob/main/LICENSE

0 commit comments

Comments
 (0)