Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,29 @@
0.19.0 2025-06-12
-----------------

* Drop deprecated Python versions 3.7 and 3.8

* Drop unsupported pypy3.9

* Use ``sys.stdlib_module_names`` where available to determine whether a
module is in the standard library or not.

* Replace usage of ``pkg_resources`` from setuptools with
``importlib.metadata``.

* Move package to PyCQA PyPI organization

* Add support for checking ordering in a ``TYPE_CHECKING`` block. This
will support the following variants:

* ``if TYPE_CHECKING:`` (where there was a prior ``from typing import
TYPE_CHECKING``.

* ``if t.TYPE_CHECKING:`` (where there was a prior ``import typing as
t``.

* ``if typing.TYPE_CHECKING:``

0.18.2 2022-11-26
-----------------

Expand Down
2 changes: 1 addition & 1 deletion flake8_import_order/__about__.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
)
__uri__ = "https://github.com/PyCQA/flake8-import-order"

__version__ = "0.18.2"
__version__ = "0.19.0"

__author__ = "Alex Stapleton"
__email__ = "alexs@prol.etari.at"
Expand Down