Skip to content

Commit

Permalink
v0.3.2 — Better Windows support
Browse files Browse the repository at this point in the history
- Replace `property-manager` with `functools.cached_property` (Python 3.8+) / `cached-property` (pre-Python 3.8)
- Open TOML files using UTF-8 (contributed by [@domdfcoding](https://github.com/domdfcoding))
- Get tests to pass on Windows
  • Loading branch information
jwodder committed Jul 8, 2021
1 parent 01bd017 commit 97e7b9f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
v0.3.2 (in development)
-----------------------
v0.3.2 (2021-07-08)
-------------------
- Replace `property-manager` with `functools.cached_property` (Python 3.8+) /
`cached-property` (pre-Python 3.8)
- Open TOML files using UTF-8 (contributed by
Expand Down
2 changes: 1 addition & 1 deletion src/check_wheel_contents/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
Visit <https://github.com/jwodder/check-wheel-contents> for more information.
"""

__version__ = "0.3.2.dev1"
__version__ = "0.3.2"
__author__ = "John Thorvald Wodder II"
__author_email__ = "[email protected]"
__license__ = "MIT"
Expand Down

0 comments on commit 97e7b9f

Please sign in to comment.