Skip to content

Commit

Permalink
Release v0.0.5 🎉
Browse files Browse the repository at this point in the history
  • Loading branch information
MrMino committed May 12, 2021
1 parent fe6665b commit 8fabad6
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`
Expand Down Expand Up @@ -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
Expand Down
4 changes: 1 addition & 3 deletions __build__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion wheelfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 8fabad6

Please sign in to comment.