Skip to content

Commit 60e0aa3

Browse files
committed
Prepare v0.19.1 release
1 parent adcd762 commit 60e0aa3

File tree

2 files changed

+16
-3
lines changed

2 files changed

+16
-3
lines changed

CHANGELOG.rst

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
0.19.1 2025-06-20
2+
-----------------
3+
4+
* Fix bug in code for checking the order of imports in a
5+
``TYPE_CHECKING`` block.
6+
7+
* Fix ``python_requires`` missing from 0.19.0 to allow folks using
8+
vulnerable and unmaintained versions of Python to continue running
9+
0.18.x with pip selecting the correct version for them.
10+
11+
* Yank 0.19.0 from PyPI to avoid aforementioned users on older versions
12+
of Python accidentally receiving 0.19.0
13+
114
0.19.0 2025-06-12
215
-----------------
316

@@ -17,10 +30,10 @@
1730
will support the following variants:
1831

1932
* ``if TYPE_CHECKING:`` (where there was a prior ``from typing import
20-
TYPE_CHECKING``.
33+
TYPE_CHECKING``).
2134

2235
* ``if t.TYPE_CHECKING:`` (where there was a prior ``import typing as
23-
t``.
36+
t``).
2437

2538
* ``if typing.TYPE_CHECKING:``
2639

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.19.0"
20+
__version__ = "0.19.1"
2121

2222
__author__ = "Alex Stapleton"
2323
__email__ = "alexs@prol.etari.at"

0 commit comments

Comments
 (0)