diff options
| author | jvoisin | 2019-02-28 00:13:28 +0100 |
|---|---|---|
| committer | jvoisin | 2019-02-28 00:13:28 +0100 |
| commit | cb8a01631933c991d84ccd01a59bfbfd459d30c2 (patch) | |
| tree | 030a19f019721fa8959101bc0c4da6d46f0af805 | |
| parent | 55214206b5f0f1c12fec378967f89ef4cb5674f9 (diff) | |
Bump the changelog0.8.0
Diffstat (limited to '')
| -rw-r--r-- | CHANGELOG.md | 7 | ||||
| -rw-r--r-- | doc/mat2.1 | 2 | ||||
| -rwxr-xr-x | mat2 | 2 | ||||
| -rw-r--r-- | setup.py | 2 | ||||
| -rw-r--r-- | tests/test_libmat2.py | 2 |
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 |
| @@ -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 |
| 4 | mat2 \- the metadata anonymisation toolkit 2 | 4 | mat2 \- the metadata anonymisation toolkit 2 |
| @@ -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 |
| 21 | assert Tuple | 21 | assert Tuple |
| @@ -5,7 +5,7 @@ with open("README.md", encoding='utf-8') as fh: | |||
| 5 | 5 | ||
| 6 | setuptools.setup( | 6 | setuptools.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: |
