Skip to content

Commit

Permalink
Merge pull request #9 from anjakefala/master
Browse files Browse the repository at this point in the history
Bump to v0.3
  • Loading branch information
saulpw authored Jul 7, 2022
2 parents b787678 + 0db9507 commit 313e0be
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:

strategy:
matrix:
python-version: [3.7, 3.8, 3.9, 3.10]
python-version: [3.8, 3.9, "3.10"]

runs-on: ubuntu-latest
steps:
Expand Down
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# unzip-http version history

# v0.3 (2022-07-06)

* add MIT license to file to make it vendorable
* expand support for the unzip_http library to Python v3.7
- (unzip-http bin still requires Python v3.8)

## API

* add zip_size attribute (thanks @bousqui #6)
* add symbols for eocd magics (thanks @bousqui #6)
* make RemoteZipFile a context handler
* RemoteZipFile.files now a cached property

# v0.2 (2022-06-29)

## Features
Expand Down
4 changes: 2 additions & 2 deletions 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.2",
version="0.3",
description="extract files from .zip files over http without downloading entire archive",
long_description=readme(),
long_description_content_type="text/markdown",
Expand All @@ -25,7 +25,7 @@ def requirements():
keywords="http zip unzip",
author="Saul Pwanson",
url="https://github.com/saulpw/unzip-http",
python_requires=">=3.7",
python_requires=">=3.8",
py_modules=["unzip_http"],
scripts=["unzip-http"],
install_requires=requirements(),
Expand Down
2 changes: 1 addition & 1 deletion unzip_http.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@

import urllib3

__version__ = '0.2'
__version__ = '0.3'


def error(s):
Expand Down

0 comments on commit 313e0be

Please sign in to comment.