diff --git a/CHANGELOG.md b/CHANGELOG.md index de277e8..0116dad 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ +# 0.2.0 - 2018-07-010 + +- Fix various crashes dues to malformed files +- Simplify various code-paths +- Remove superfluous debug message +- Remove the `--check` option that never was implemented anyway +- Add a `-c` option to check for MAT2's dependencies + + # 0.1.3 - 2018-07-06 - Improve MAT2 resilience against corrupted images diff --git a/mat2 b/mat2 index efc0478..29d653b 100755 --- a/mat2 +++ b/mat2 @@ -14,7 +14,7 @@ except ValueError as e: print(e) sys.exit(1) -__version__ = '0.1.3' +__version__ = '0.2.0' def __check_file(filename: str, mode: int = os.R_OK) -> bool: if not os.path.exists(filename): diff --git a/setup.py b/setup.py index 773e0a3..ef7024e 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ with open("README.md", "r") as fh: setuptools.setup( name="mat2", - version='0.1.3', + version='0.2.0', author="Julien (jvoisin) Voisin", author_email="julien.voisin+mat2@dustri.org", description="A handy tool to trash your metadata",