From dfccf79f22a9d0dd2f0d9015dbe0cb398b01078c Mon Sep 17 00:00:00 2001
From: jvoisin <julien.voisin@dustri.org>
Date: Thu, 21 Jun 2018 23:34:12 +0200
Subject: [PATCH] Bump the changelog

---
 CHANGELOG.md | 10 ++++++++++
 mat2         |  2 +-
 setup.py     |  2 +-
 3 files changed, 12 insertions(+), 2 deletions(-)

diff --git a/CHANGELOG.md b/CHANGELOG.md
index 7bfee07..e0f8108 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,13 @@
+# 0.1.2 - 2018-06-21
+
+- Rename some files to ease the packaging
+- Add linters to the CI (mypy, bandit and pyflakes)
+- Prevent exitftool-related parameters injections
+- Improve MAT2's resilience against corrupted files
+- Make MAT2 work on fedora, thanks to @atenart
+- Tighten the threat model
+- Simplify and improve how office files are handled
+
 # 0.1.1 - 2018-05-16
 
 - Improve the cli usage
diff --git a/mat2 b/mat2
index 7a210d5..0ffb90c 100755
--- a/mat2
+++ b/mat2
@@ -10,7 +10,7 @@ import multiprocessing
 
 from libmat2 import parser_factory, unsupported_extensions
 
-__version__ = '0.1.1'
+__version__ = '0.1.2'
 
 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 f16934d..4c7aaf7 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.1',
+    version='0.1.2',
     author="Julien (jvoisin) Voisin",
     author_email="julien.voisin+mat2@dustri.org",
     description="A handy tool to trash your metadata",
-- 
GitLab