diff --git a/changelog.txt b/changelog.txt new file mode 100644 index 0000000..9d21aab --- /dev/null +++ b/changelog.txt @@ -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]. diff --git a/repro_apk/__init__.py b/repro_apk/__init__.py index 4c31f1c..281a5a6 100644 --- a/repro_apk/__init__.py +++ b/repro_apk/__init__.py @@ -18,7 +18,7 @@ import click -__version__ = "0.1.1" +__version__ = "0.2.0" NAME = "repro-apk" ERRORS = ( diff --git a/setup.py b/setup.py index d72c016..d48cc12 100644 --- a/setup.py +++ b/setup.py @@ -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")