Skip to content

Commit

Permalink
Bump version to v1.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
pR0Ps committed Oct 1, 2023
1 parent 17db6d8 commit 1b61931
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
zipstream-ng changelog
======================

### [v1.7.0]
- Add the ability to get information on added files using `ZipStream.info_list`. This function
replaces `ZipStream.get_info` which would only provide information on files that had already been
streamed.
- Deprecate `ZipStream.get_info`. It will continue to work until the next major version but
will now emit a warning when used.
- Reduce memory usage for sized `ZipStream` objects by updating the final size of the stream as
files are added instead of storing the required information so the size could be calculated later.

### [v1.6.0]
- Add the ability to provide a custom "walk" function to `ZipStream.add_path` for more control
over how directories are walked.
Expand Down Expand Up @@ -81,3 +90,4 @@ zipstream-ng changelog
[v1.4.0]: https://github.com/pR0Ps/zipstream-ng/compare/v1.3.5...v1.4.0
[v1.5.0]: https://github.com/pR0Ps/zipstream-ng/compare/v1.4.0...v1.5.0
[v1.6.0]: https://github.com/pR0Ps/zipstream-ng/compare/v1.5.0...v1.6.0
[v1.7.0]: https://github.com/pR0Ps/zipstream-ng/compare/v1.6.0...v1.7.0
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

setup(
name="zipstream-ng",
version="1.6.0",
version="1.7.0",
description="A modern and easy to use streamable zip file generator",
long_description=long_description,
long_description_content_type="text/markdown",
Expand Down

0 comments on commit 1b61931

Please sign in to comment.