diff --git a/CHANGELOG.md b/CHANGELOG.md
index 827866a5c678fa88e3969cd24557213d72133c68..7bfee07b28f5cb14d403e705a2f9fa0feef479eb 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,9 @@
+# 0.1.1 - 2018-05-16
+
+- Improve the cli usage
+- Refuse to process files with a supported mimetype but an unsupported
+	extension, like `text/plain` for a `.c`
+
 # 0.1.0 - 2018-05-14
 
 - Initial release
diff --git a/main.py b/main.py
index a31adaaf86e258356e0a7b0e08266dbcaf571b4b..55489be730fc3d10568d4b7430e2021753fdbbff 100755
--- a/main.py
+++ b/main.py
@@ -10,7 +10,7 @@ import multiprocessing
 
 from src import parser_factory, unsupported_extensions
 
-__version__ = '0.1.0'
+__version__ = '0.1.1'
 
 def __check_file(filename: str, mode: int = os.R_OK) -> bool:
     if not os.path.isfile(filename):