From 4a6b49448bcc245642bb9c29677b73b0776ce2c4 Mon Sep 17 00:00:00 2001 From: "John T. Wodder II" Date: Sat, 25 Jan 2020 21:15:16 +0000 Subject: [PATCH] =?UTF-8?q?v1.4.0=20=E2=80=94=20Trim=20comma-separated=20k?= =?UTF-8?q?eywords?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - When splitting apart comma-separated keywords, trim whitespace and discard any keywords that are empty or all-whitespace - Support Python 3.8 --- CHANGELOG.md | 4 ++-- LICENSE | 2 +- src/wheel_inspect/__init__.py | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3d81b8b..2f3ca38 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,5 @@ -v1.4.0 (in development) ------------------------ +v1.4.0 (2020-01-25) +------------------- - When splitting apart comma-separated keywords, trim whitespace and discard any keywords that are empty or all-whitespace - Support Python 3.8 diff --git a/LICENSE b/LICENSE index f422116..93c9517 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ The MIT License (MIT) -Copyright (c) 2017-2019 John Thorvald Wodder II +Copyright (c) 2017-2020 John Thorvald Wodder II Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/src/wheel_inspect/__init__.py b/src/wheel_inspect/__init__.py index 44f31dc..3eda154 100644 --- a/src/wheel_inspect/__init__.py +++ b/src/wheel_inspect/__init__.py @@ -18,7 +18,7 @@ from .schema import SCHEMA from .wheelcls import Wheel, inspect_wheel -__version__ = '1.4.0.dev1' +__version__ = '1.4.0' __author__ = 'John Thorvald Wodder II' __author_email__ = 'wheel-inspect@varonathe.org' __license__ = 'MIT'