From 2ce1dc793e6c15b4a40bcbb9a70c415560816b8e Mon Sep 17 00:00:00 2001
From: jvoisin <julien.voisin@dustri.org>
Date: Fri, 3 Aug 2018 22:20:24 +0200
Subject: [PATCH] Bump the changelog

---
 CHANGELOG.md | 13 ++++++++++++-
 doc/mat.1    |  2 +-
 mat2         |  2 +-
 setup.py     |  2 +-
 4 files changed, 15 insertions(+), 4 deletions(-)

diff --git a/CHANGELOG.md b/CHANGELOG.md
index 0116dad..8af906c 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,4 +1,15 @@
-# 0.2.0 - 2018-07-010
+# 0.3.0 - 2018-08-03
+
+- Add a check for missing dependencies
+- Add Nautilus extension
+- Minors code simplifications
+- Improve our linters' coverage
+- Add a manpage
+- Add folder/multiple files related tests
+- Change the logo
+
+
+# 0.2.0 - 2018-07-10
 
 - Fix various crashes dues to malformed files
 - Simplify various code-paths
diff --git a/doc/mat.1 b/doc/mat.1
index a69bf7c..ddc009a 100644
--- a/doc/mat.1
+++ b/doc/mat.1
@@ -1,4 +1,4 @@
-.TH MAT2 "1" "July 2018" "MAT2 0.2.0" "User Commands"
+.TH MAT2 "1" "August 2018" "MAT2 0.3.0" "User Commands"
 
 .SH NAME
 mat2 \- the metadata anonymisation toolkit 2
diff --git a/mat2 b/mat2
index d24f2bc..35b5aee 100755
--- a/mat2
+++ b/mat2
@@ -14,7 +14,7 @@ except ValueError as e:
     print(e)
     sys.exit(1)
 
-__version__ = '0.2.0'
+__version__ = '0.3.0'
 
 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 ef7024e..c8e6582 100644
--- a/setup.py
+++ b/setup.py
@@ -5,7 +5,7 @@ with open("README.md", "r") as fh:
 
 setuptools.setup(
     name="mat2",
-    version='0.2.0',
+    version='0.3.0',
     author="Julien (jvoisin) Voisin",
     author_email="julien.voisin+mat2@dustri.org",
     description="A handy tool to trash your metadata",
-- 
GitLab