diff --git a/CHANGELOG.md b/CHANGELOG.md
index 8af906c8c528459b68ff6f11e7d27408671b80fb..dfd81c4c25f79a2c9ab9fde3128c1aa460938479 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,13 @@
+# 0.3.1 - 2018-09-01
+
+- Document how to install MAT2 for various distributions
+- Fix various typos in the documentation/comments
+- Add ArchLinux to the CI to ensure that MAT2 is running on it
+- Fix the handling of files with a name ending in `.JPG`
+- Improve the detection of unsupported extensions in upper-case
+- Streamline MAT2's logging
+
+
 # 0.3.0 - 2018-08-03
 
 - Add a check for missing dependencies
diff --git a/doc/mat.1 b/doc/mat.1
index ddc009a0bbf7376931b1b4a35b5547d0e89433c2..e7ad3ad6cc805e4161a255e573a64be6c081f325 100644
--- a/doc/mat.1
+++ b/doc/mat.1
@@ -1,4 +1,4 @@
-.TH MAT2 "1" "August 2018" "MAT2 0.3.0" "User Commands"
+.TH MAT2 "1" "September 2018" "MAT2 0.3.1" "User Commands"
 
 .SH NAME
 mat2 \- the metadata anonymisation toolkit 2
diff --git a/mat2 b/mat2
index dc316e929c16191a75341c2ca6488732e51201fc..f403d21dbc421e3465fb84eb8a23b04e82eb8ffa 100755
--- a/mat2
+++ b/mat2
@@ -15,7 +15,7 @@ except ValueError as e:
     print(e)
     sys.exit(1)
 
-__version__ = '0.3.0'
+__version__ = '0.3.1'
 
 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 c8e65829dfeb159e1cc19782b958a4c8715fdc9b..9773e490c2a88467338feae01f7c6cd398201ca9 100644
--- a/setup.py
+++ b/setup.py
@@ -5,7 +5,7 @@ with open("README.md", "r") as fh:
 
 setuptools.setup(
     name="mat2",
-    version='0.3.0',
+    version='0.3.1',
     author="Julien (jvoisin) Voisin",
     author_email="julien.voisin+mat2@dustri.org",
     description="A handy tool to trash your metadata",