Skip to content

Commit

Permalink
Bump astroid to 2.9.3, update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
Pierre-Sassoulas committed Jan 9, 2022
1 parent a03c07d commit d344953
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 4 deletions.
8 changes: 7 additions & 1 deletion ChangeLog
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,16 @@ What's New in astroid 2.10.0?
Release date: TBA


What's New in astroid 2.9.3?
What's New in astroid 2.9.4?
============================
Release date: TBA



What's New in astroid 2.9.3?
============================
Release date: 2022-01-09

* Fixed regression where packages without a ``__init__.py`` file were
not recognized or imported correctly.

Expand Down
2 changes: 1 addition & 1 deletion astroid/__pkginfo__.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,5 @@
# Licensed under the LGPL: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html
# For details: https://github.com/PyCQA/astroid/blob/main/LICENSE

__version__ = "2.9.2"
__version__ = "2.9.3"
version = __version__
14 changes: 14 additions & 0 deletions doc/release.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,17 @@ Check the result and then upgrade the main branch

We move issue that were not done in the next milestone and block release only if it's an
issue labelled as blocker.

## Post release

### Merge tags in main for pre-commit

If the tag you just made is not part of the main branch, merge the tag `vX.Y.Z` in the
main branch by doing a history only merge. It's done in order to signal that this is an
official release tag, and for `pre-commit autoupdate` to works.

```bash
git checkout main
git merge --no-edit --strategy=ours vX.Y.Z
git push
```
2 changes: 1 addition & 1 deletion tbump.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
github_url = "https://github.com/PyCQA/astroid"

[version]
current = "2.9.2"
current = "2.9.3"
regex = '''
^(?P<major>0|[1-9]\d*)
\.
Expand Down
3 changes: 2 additions & 1 deletion tests/unittest_modutils.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,12 @@
# Copyright (c) 2019 markmcclain <[email protected]>
# Copyright (c) 2020-2021 hippo91 <[email protected]>
# Copyright (c) 2020 Peter Kolbus <[email protected]>
# Copyright (c) 2021-2022 Daniël van Noord <[email protected]>
# Copyright (c) 2021 Pierre Sassoulas <[email protected]>
# Copyright (c) 2021 Daniël van Noord <[email protected]>
# Copyright (c) 2021 Marc Mueller <[email protected]>
# Copyright (c) 2021 DudeNr33 <[email protected]>
# Copyright (c) 2021 pre-commit-ci[bot] <[email protected]>
# Copyright (c) 2022 Alexander Shadchin <[email protected]>

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

0 comments on commit d344953

Please sign in to comment.