summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjvoisin2018-07-06 01:00:14 +0200
committerjvoisin2018-07-06 01:00:14 +0200
commitc2ef35d1f177db98813f697c73c86de477f17c39 (patch)
tree67cc808b7e7cbfa037b5e2c8b41ab30ccec98f5a
parent3d80f9752481b8967616698bb3c0c014e6f1527a (diff)
Bump the changelog0.1.3
-rw-r--r--CHANGELOG.md11
-rwxr-xr-xmat22
-rw-r--r--setup.py2
3 files changed, 13 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index e0f8108..de277e8 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,14 @@
1# 0.1.3 - 2018-07-06
2
3- Improve MAT2 resilience against corrupted images
4- Check that the minimal version of Poppler is available
5- Simplify how MAT2 deals with office files
6- Improve cleaning of office files
7 - Thumbnails are removed
8 - Revisions are removed
9- Add support for plain text files
10
11
1# 0.1.2 - 2018-06-21 12# 0.1.2 - 2018-06-21
2 13
3- Rename some files to ease the packaging 14- Rename some files to ease the packaging
diff --git a/mat2 b/mat2
index d1e7e0d..3fef8a0 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.2' 17__version__ = '0.1.3'
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 4c7aaf7..773e0a3 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.2', 8 version='0.1.3',
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",