From ebe11df1062678d0b107f154ec155d29945d2106 Mon Sep 17 00:00:00 2001 From: "John T. Wodder II" Date: Tue, 31 Oct 2023 17:20:19 -0400 Subject: [PATCH] =?UTF-8?q?v0.6.0=20=E2=80=94=20Exclude=20toplevel=20from?= =?UTF-8?q?=20W005?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Support Python 3.12 - Add type annotations to tests - W005 will no longer fail for common names that are provided to `--toplevel` (contributed by [@gaborbernat](https://github.com/gaborbernat)) --- CHANGELOG.md | 4 ++-- src/check_wheel_contents/__init__.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f1e42d1..6f3dbd3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,5 @@ -v0.6.0 (in development) ------------------------ +v0.6.0 (2023-10-31) +------------------- - Support Python 3.12 - Add type annotations to tests - W005 will no longer fail for common names that are provided to `--toplevel` diff --git a/src/check_wheel_contents/__init__.py b/src/check_wheel_contents/__init__.py index a064327..d905ea5 100644 --- a/src/check_wheel_contents/__init__.py +++ b/src/check_wheel_contents/__init__.py @@ -12,7 +12,7 @@ Visit for more information. """ -__version__ = "0.6.0.dev1" +__version__ = "0.6.0" __author__ = "John Thorvald Wodder II" __author_email__ = "check-wheel-contents@varonathe.org" __license__ = "MIT"