summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.md9
-rwxr-xr-xmat22
-rw-r--r--setup.py2
3 files changed, 11 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index de277e8..0116dad 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,12 @@
1# 0.2.0 - 2018-07-010
2
3- Fix various crashes dues to malformed files
4- Simplify various code-paths
5- Remove superfluous debug message
6- Remove the `--check` option that never was implemented anyway
7- Add a `-c` option to check for MAT2's dependencies
8
9
1# 0.1.3 - 2018-07-06 10# 0.1.3 - 2018-07-06
2 11
3- Improve MAT2 resilience against corrupted images 12- 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:
14 print(e) 14 print(e)
15 sys.exit(1) 15 sys.exit(1)
16 16
17__version__ = '0.1.3' 17__version__ = '0.2.0'
18 18
19def __check_file(filename: str, mode: int = os.R_OK) -> bool: 19def __check_file(filename: str, mode: int = os.R_OK) -> bool:
20 if not os.path.exists(filename): 20 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:
5 5
6setuptools.setup( 6setuptools.setup(
7 name="mat2", 7 name="mat2",
8 version='0.1.3', 8 version='0.2.0',
9 author="Julien (jvoisin) Voisin", 9 author="Julien (jvoisin) Voisin",
10 author_email="julien.voisin+mat2@dustri.org", 10 author_email="julien.voisin+mat2@dustri.org",
11 description="A handy tool to trash your metadata", 11 description="A handy tool to trash your metadata",