summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.md10
-rw-r--r--doc/mat2.12
-rwxr-xr-xmat22
-rw-r--r--setup.py2
4 files changed, 13 insertions, 3 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 1b53c98..941c0a8 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,13 @@
1# 0.9.0 - 2019-05-10
2
3- Add tar/tar.gz/tar.bz2/tar.zx archives support
4- Add support for xhtml files
5- Improve handling of read-only files
6- Improve a bit the command line's documentation
7- Fix a confusing error message
8- Add even more tests
9- Usuals internal cleanups/refactorings
10
1# 0.8.0 - 2019-02-28 11# 0.8.0 - 2019-02-28
2 12
3- Add support for epub files 13- Add support for epub files
diff --git a/doc/mat2.1 b/doc/mat2.1
index f4071ae..c63b46b 100644
--- a/doc/mat2.1
+++ b/doc/mat2.1
@@ -1,4 +1,4 @@
1.TH MAT2 "1" "February 2019" "MAT2 0.8.0" "User Commands" 1.TH MAT2 "1" "May 2019" "MAT2 0.9.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 f180d5c..4b2751e 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.8.0' 18__version__ = '0.9.0'
19 19
20# Make pyflakes happy 20# Make pyflakes happy
21assert Tuple 21assert Tuple
diff --git a/setup.py b/setup.py
index 3be8ccb..663b9d6 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.8.0', 8 version='0.9.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",