Skip to content

Commit 4147a5f

Browse files
committed
Release 0.18.2
Quickest path to release possible, not ideal
1 parent 53926c7 commit 4147a5f

File tree

3 files changed

+16
-1
lines changed

3 files changed

+16
-1
lines changed

CHANGELOG.rst

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
0.18.2 2022-11-26
2+
-----------------
3+
4+
* Add ``zoneinfo`` to list of standard library modules
5+
* Fix registering of options with Flake8 >= 6.0
6+
17
0.18.1 2019-03-04
28
-----------------
39

flake8_import_order/__about__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
)
1313
__uri__ = "https://github.com/PyCQA/flake8-import-order"
1414

15-
__version__ = "0.18.1"
15+
__version__ = "0.18.2"
1616

1717
__author__ = "Alex Stapleton"
1818
__email__ = "[email protected]"

tox.ini

+9
Original file line numberDiff line numberDiff line change
@@ -42,3 +42,12 @@ commands =
4242
[testenv:manifest]
4343
deps = check-manifest
4444
commands = check-manifest
45+
46+
[testenv:release]
47+
deps =
48+
build
49+
twine
50+
commands =
51+
python -m build
52+
twine check dist/*
53+
twine upload {posargs:--skip-existing} dist/*

0 commit comments

Comments
 (0)