Skip to content

Commit c526faf

Browse files
Merge branch '2.9' into main
2 parents 5c565b7 + 4fd3d34 commit c526faf

File tree

3 files changed

+23
-2
lines changed

3 files changed

+23
-2
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

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+
```

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)