diff --git a/CHANGELOG.md b/CHANGELOG.md index d25b21e..0edbc79 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,11 @@ Versioning](https://semver.org/spec/v2.0.0.html). ### Added Nothing yet. +## [0.0.5] - 2021-05-12 +### Fixed +- Added `ZipInfo38` requirement - v0.0.4 has been released without it by + mistake. + ## [0.0.4] - 2021-05-05 ### Added - `WheelFile.write` and `WheelFile.write_data` now accept a `recursive` @@ -59,7 +64,8 @@ contributions - both of the fixes below came from them. - First working version of the library. - It's possible to create wheels from scratch. -[Unreleased]: https://github.com/mrmino/wheelfile/compare/v0.0.4...HEAD +[Unreleased]: https://github.com/mrmino/wheelfile/compare/v0.0.5...HEAD +[0.0.5]: https://github.com/mrmino/wheelfile/compare/v0.0.4...v0.0.5 [0.0.4]: https://github.com/mrmino/wheelfile/compare/v0.0.3...v0.0.4 [0.0.3]: https://github.com/mrmino/wheelfile/compare/v0.0.2...v0.0.3 [0.0.2]: https://github.com/mrmino/wheelfile/compare/v0.0.1...v0.0.2 diff --git a/__build__.py b/__build__.py index 36b94a8..b544fbd 100644 --- a/__build__.py +++ b/__build__.py @@ -6,9 +6,7 @@ 'version': __version__ } -requirements = [ - 'packaging ~= 20.8' -] +requirements = Path('./requirements.txt').read_text().splitlines() with WheelFile(mode='w', **spec) as wf: wf.metadata.requires_dists = requirements diff --git a/wheelfile.py b/wheelfile.py index d8a6cf6..a61cf79 100644 --- a/wheelfile.py +++ b/wheelfile.py @@ -42,7 +42,7 @@ from typing import Optional, Union, List, Dict, IO, BinaryIO -__version__ = '0.0.4' +__version__ = '0.0.5' # TODO: idea: Corrupted class: denotes that something is present, but could not