Skip to content

Commit

Permalink
Merge pull request #5 from anjakefala/master
Browse files Browse the repository at this point in the history
[build] bump to v0.2
  • Loading branch information
saulpw authored Jun 30, 2022
2 parents 6d211dd + 3223dc1 commit 11e5f09
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 1 deletion.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# unzip-http version history

# v0.2 (2022-06-29)

## Features

- show sizes in bytes instead of MB
- support ZIP64 (requested by @bousqi #4)

## Bugfixes

- fix off-by-one: range-requests are inclusive of end byte (reported by @bousqi #3)
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ def requirements():

setup(
name="unzip-http",
version="0.1",
version="0.2",
description="extract files from .zip files over http without downloading entire archive",
long_description=readme(),
long_description_content_type="text/markdown",
Expand Down
2 changes: 2 additions & 0 deletions unzip_http.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@

import urllib3

__version__ = '0.2'


def error(s):
raise Exception(s)
Expand Down

0 comments on commit 11e5f09

Please sign in to comment.