summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.md7
-rw-r--r--doc/mat2.12
-rwxr-xr-xmat22
-rw-r--r--setup.py2
-rw-r--r--tests/test_libmat2.py2
5 files changed, 11 insertions, 4 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 799ae0b..1b53c98 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,10 @@
1# 0.8.0 - 2019-02-28
2
3- Add support for epub files
4- Fix the setup.py file crashing on non-utf8 platforms
5- Improve css support
6- Improve html support
7
1# 0.7.0 - 2019-02-17 8# 0.7.0 - 2019-02-17
2 9
3- Add support for wmv files 10- Add support for wmv files
diff --git a/doc/mat2.1 b/doc/mat2.1
index 140533a..0546826 100644
--- a/doc/mat2.1
+++ b/doc/mat2.1
@@ -1,4 +1,4 @@
1.TH MAT2 "1" "February 2019" "MAT2 0.7.0" "User Commands" 1.TH MAT2 "1" "February 2019" "MAT2 0.8.0" "User Commands"
2 2
3.SH NAME 3.SH NAME
4mat2 \- the metadata anonymisation toolkit 2 4mat2 \- the metadata anonymisation toolkit 2
diff --git a/mat2 b/mat2
index bd77ac3..4f4f0db 100755
--- a/mat2
+++ b/mat2
@@ -15,7 +15,7 @@ except ValueError as e:
15 print(e) 15 print(e)
16 sys.exit(1) 16 sys.exit(1)
17 17
18__version__ = '0.7.0' 18__version__ = '0.8.0'
19 19
20# Make pyflakes happy 20# Make pyflakes happy
21assert Tuple 21assert Tuple
diff --git a/setup.py b/setup.py
index 8934ce2..3be8ccb 100644
--- a/setup.py
+++ b/setup.py
@@ -5,7 +5,7 @@ with open("README.md", encoding='utf-8') as fh:
5 5
6setuptools.setup( 6setuptools.setup(
7 name="mat2", 7 name="mat2",
8 version='0.7.0', 8 version='0.8.0',
9 author="Julien (jvoisin) Voisin", 9 author="Julien (jvoisin) Voisin",
10 author_email="julien.voisin+mat2@dustri.org", 10 author_email="julien.voisin+mat2@dustri.org",
11 description="A handy tool to trash your metadata", 11 description="A handy tool to trash your metadata",
diff --git a/tests/test_libmat2.py b/tests/test_libmat2.py
index 46e234e..250b5ec 100644
--- a/tests/test_libmat2.py
+++ b/tests/test_libmat2.py
@@ -652,7 +652,7 @@ class TestCleaning(unittest.TestCase):
652 os.remove('./tests/data/clean.cleaned.html') 652 os.remove('./tests/data/clean.cleaned.html')
653 653
654 with open('./tests/data/clean.html', 'w') as f: 654 with open('./tests/data/clean.html', 'w') as f:
655 f.write('<meta><meta/></meta>') 655 f.write('<meta><meta/><!----><!-- test--></meta>')
656 p = web.HTMLParser('./tests/data/clean.html') 656 p = web.HTMLParser('./tests/data/clean.html')
657 self.assertTrue(p.remove_all()) 657 self.assertTrue(p.remove_all())
658 with open('./tests/data/clean.cleaned.html', 'r') as f: 658 with open('./tests/data/clean.cleaned.html', 'r') as f: