Skip to content

Commit 8285993

Browse files
authored
Prepare 0.19.0 release (#209)
1 parent 7b63eea commit 8285993

File tree

2 files changed

+27
-1
lines changed

2 files changed

+27
-1
lines changed

CHANGELOG.rst

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,29 @@
1+
0.19.0 2025-06-12
2+
-----------------
3+
4+
* Drop deprecated Python versions 3.7 and 3.8
5+
6+
* Drop unsupported pypy3.9
7+
8+
* Use ``sys.stdlib_module_names`` where available to determine whether a
9+
module is in the standard library or not.
10+
11+
* Replace usage of ``pkg_resources`` from setuptools with
12+
``importlib.metadata``.
13+
14+
* Move package to PyCQA PyPI organization
15+
16+
* Add support for checking ordering in a ``TYPE_CHECKING`` block. This
17+
will support the following variants:
18+
19+
* ``if TYPE_CHECKING:`` (where there was a prior ``from typing import
20+
TYPE_CHECKING``.
21+
22+
* ``if t.TYPE_CHECKING:`` (where there was a prior ``import typing as
23+
t``.
24+
25+
* ``if typing.TYPE_CHECKING:``
26+
127
0.18.2 2022-11-26
228
-----------------
329

flake8_import_order/__about__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
)
1818
__uri__ = "https://github.com/PyCQA/flake8-import-order"
1919

20-
__version__ = "0.18.2"
20+
__version__ = "0.19.0"
2121

2222
__author__ = "Alex Stapleton"
2323
__email__ = "[email protected]"

0 commit comments

Comments
 (0)