From c2ef35d1f177db98813f697c73c86de477f17c39 Mon Sep 17 00:00:00 2001 From: jvoisin Date: Fri, 6 Jul 2018 01:00:14 +0200 Subject: [PATCH] Bump the changelog --- CHANGELOG.md | 11 +++++++++++ mat2 | 2 +- setup.py | 2 +- 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 @@ +# 0.1.3 - 2018-07-06 + +- Improve MAT2 resilience against corrupted images +- Check that the minimal version of Poppler is available +- Simplify how MAT2 deals with office files +- Improve cleaning of office files + - Thumbnails are removed + - Revisions are removed +- Add support for plain text files + + # 0.1.2 - 2018-06-21 - 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: print(e) sys.exit(1) -__version__ = '0.1.2' +__version__ = '0.1.3' 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 4c7aaf7..773e0a3 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.2', + version='0.1.3', author="Julien (jvoisin) Voisin", author_email="julien.voisin+mat2@dustri.org", description="A handy tool to trash your metadata",