File tree Expand file tree Collapse file tree 3 files changed +11
-2
lines changed Expand file tree Collapse file tree 3 files changed +11
-2
lines changed Original file line number Diff line number Diff line change 1
1
# unzip-http version history
2
2
3
+ # v0.4 (2022-07-13)
4
+
5
+ - expand support for the unzip_http library to Python v3.6
6
+
7
+ ## API
8
+
9
+ * parse date_time in ZipInfo
10
+ * add RemoveZipFile.extractall()
11
+
3
12
# v0.3 (2022-07-06)
4
13
5
14
* add MIT license to file to make it vendorable
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.3 " ,
17
+ version = "0.4 " ,
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 32
32
33
33
import urllib3
34
34
35
- __version__ = '0.4dev '
35
+ __version__ = '0.4 '
36
36
37
37
38
38
def error (s ):
You can’t perform that action at this time.
0 commit comments