File tree 3 files changed +15
-1
lines changed
3 files changed +15
-1
lines changed Original file line number Diff line number Diff line change
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 )
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ def requirements():
14
14
15
15
setup (
16
16
name = "unzip-http" ,
17
- version = "0.1 " ,
17
+ version = "0.2 " ,
18
18
description = "extract files from .zip files over http without downloading entire archive" ,
19
19
long_description = readme (),
20
20
long_description_content_type = "text/markdown" ,
Original file line number Diff line number Diff line change 9
9
10
10
import urllib3
11
11
12
+ __version__ = '0.2'
13
+
12
14
13
15
def error (s ):
14
16
raise Exception (s )
You can’t perform that action at this time.
0 commit comments