Skip to content

Commit 71369dc

Browse files
anjakefalasaulpw
authored andcommitted
bump to v0.4
update CHANGELOG
1 parent 3004e78 commit 71369dc

File tree

3 files changed

+11
-2
lines changed

3 files changed

+11
-2
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# unzip-http version history
22

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+
312
# v0.3 (2022-07-06)
413

514
* add MIT license to file to make it vendorable

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ def requirements():
1414

1515
setup(
1616
name="unzip-http",
17-
version="0.3",
17+
version="0.4",
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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232

3333
import urllib3
3434

35-
__version__ = '0.4dev'
35+
__version__ = '0.4'
3636

3737

3838
def error(s):

0 commit comments

Comments
 (0)