Skip to content

Commit

Permalink
v0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
obfusk committed Jan 15, 2023
1 parent 7750167 commit e92a72e
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 2 deletions.
12 changes: 12 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
v0.2.0

• use basic argparse for non-click clis.
• use proper typechecking.
• _realign_zip_entry(): use extra field from LH, not CD.
• sort-apk: add --reset-lh-extra.
• add dump-arsc.py.
• add fix-compresslevel.py & list-compresslevel.py.
• add dump-baseline.py & sort-baseline.py.
• add diff-zip-meta.py.
• check actual compressed data [closes #8].
• add proper tests [closes #1].
2 changes: 1 addition & 1 deletion repro_apk/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

import click

__version__ = "0.1.1"
__version__ = "0.2.0"
NAME = "repro-apk"

ERRORS = (
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from pathlib import Path
import setuptools

__version__ = "0.1.1"
__version__ = "0.2.0"

info = Path(__file__).with_name("README.md").read_text(encoding = "utf8")

Expand Down

0 comments on commit e92a72e

Please sign in to comment.