Skip to content

Commit

Permalink
v1.4.0 — Trim comma-separated keywords
Browse files Browse the repository at this point in the history
- When splitting apart comma-separated keywords, trim whitespace and discard any keywords that are empty or all-whitespace
- Support Python 3.8
  • Loading branch information
jwodder committed Jan 25, 2020
1 parent 40be324 commit 4a6b494
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/wheel_inspect/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down

0 comments on commit 4a6b494

Please sign in to comment.