Skip to content

Commit 11e5f09

Browse files
author
Saul Pwanson
authored
Merge pull request #5 from anjakefala/master
[build] bump to v0.2
2 parents 6d211dd + 3223dc1 commit 11e5f09

File tree

3 files changed

+15
-1
lines changed

3 files changed

+15
-1
lines changed

CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# unzip-http version history
2+
3+
# v0.2 (2022-06-29)
4+
5+
## Features
6+
7+
- show sizes in bytes instead of MB
8+
- support ZIP64 (requested by @bousqi #4)
9+
10+
## Bugfixes
11+
12+
- fix off-by-one: range-requests are inclusive of end byte (reported by @bousqi #3)

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ def requirements():
1414

1515
setup(
1616
name="unzip-http",
17-
version="0.1",
17+
version="0.2",
1818
description="extract files from .zip files over http without downloading entire archive",
1919
long_description=readme(),
2020
long_description_content_type="text/markdown",

unzip_http.py

+2
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@
99

1010
import urllib3
1111

12+
__version__ = '0.2'
13+
1214

1315
def error(s):
1416
raise Exception(s)

0 commit comments

Comments
 (0)