1
0
Fork 0

Bump the changelog

This commit is contained in:
jvoisin 2018-07-10 21:41:24 +02:00
parent 5a7c7f35f7
commit 8093dce88e
3 changed files with 11 additions and 2 deletions

View File

@ -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

2
mat2
View File

@ -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):

View File

@ -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",