diff --git a/CHANGELOG.md b/CHANGELOG.md
index 799ae0b314fe2e69742ca205348da9597ea3b960..1b53c9807bdba49095104efff1b90d7f7dc41fb0 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,10 @@
+# 0.8.0 - 2019-02-28
+
+- Add support for epub files
+- Fix the setup.py file crashing on non-utf8 platforms
+- Improve css support
+- Improve html support
+
 # 0.7.0 - 2019-02-17
 
 - Add support for wmv files
diff --git a/doc/mat2.1 b/doc/mat2.1
index 140533a974ba1047d54a21c5a6b4fb70dcde9631..0546826d7062406bf32e07aa5ff63281de179541 100644
--- a/doc/mat2.1
+++ b/doc/mat2.1
@@ -1,4 +1,4 @@
-.TH MAT2 "1" "February 2019" "MAT2 0.7.0" "User Commands"
+.TH MAT2 "1" "February 2019" "MAT2 0.8.0" "User Commands"
 
 .SH NAME
 mat2 \- the metadata anonymisation toolkit 2
diff --git a/mat2 b/mat2
index bd77ac3e02863a85b1283c6768162582a67cad16..4f4f0db26613cf276030101989ec7701ca2c0be7 100755
--- a/mat2
+++ b/mat2
@@ -15,7 +15,7 @@ except ValueError as e:
     print(e)
     sys.exit(1)
 
-__version__ = '0.7.0'
+__version__ = '0.8.0'
 
 # Make pyflakes happy
 assert Tuple
diff --git a/setup.py b/setup.py
index 8934ce29e30d4c66473f75366c17ca9997060f4c..3be8ccb5919dfaef8b1e73c3ce5f0c55568496e7 100644
--- a/setup.py
+++ b/setup.py
@@ -5,7 +5,7 @@ with open("README.md", encoding='utf-8') as fh:
 
 setuptools.setup(
     name="mat2",
-    version='0.7.0',
+    version='0.8.0',
     author="Julien (jvoisin) Voisin",
     author_email="julien.voisin+mat2@dustri.org",
     description="A handy tool to trash your metadata",
diff --git a/tests/test_libmat2.py b/tests/test_libmat2.py
index 46e234ebba2324d99cd442813e7633760a668140..250b5ecd86fb21ee8cbf728bf7ef1d41c1d38340 100644
--- a/tests/test_libmat2.py
+++ b/tests/test_libmat2.py
@@ -652,7 +652,7 @@ class TestCleaning(unittest.TestCase):
         os.remove('./tests/data/clean.cleaned.html')
 
         with open('./tests/data/clean.html', 'w') as f:
-            f.write('<meta><meta/></meta>')
+            f.write('<meta><meta/><!----><!-- test--></meta>')
         p = web.HTMLParser('./tests/data/clean.html')
         self.assertTrue(p.remove_all())
         with open('./tests/data/clean.cleaned.html', 'r') as f: