summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.md9
-rw-r--r--doc/mat2.12
-rwxr-xr-xmat22
-rw-r--r--setup.py2
4 files changed, 12 insertions, 3 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 9ac2198..bce1022 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,12 @@
1# 0.10.1 - 2020-02-09
2
3- Improve the documentation and the manpage
4- Improve the robustness of css, html, png, gdk-based, exiftool-based parsers
5- Future-proof a bit the testsuite
6- Handle tiff files with a .tif extension
7- Improve the sandbox' usability
8- Add support for wav files
9
1# 0.10.0 - 2019-11-30 10# 0.10.0 - 2019-11-30
2 11
3- Make mat2 work on Python3.8 12- Make mat2 work on Python3.8
diff --git a/doc/mat2.1 b/doc/mat2.1
index 73ffbfd..c2ccd83 100644
--- a/doc/mat2.1
+++ b/doc/mat2.1
@@ -1,4 +1,4 @@
1.TH mat2 "1" "November 2019" "mat2 0.10.0" "User Commands" 1.TH mat2 "1" "February 2020" "mat2 0.10.1" "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 31365ce..2a468f3 100755
--- a/mat2
+++ b/mat2
@@ -17,7 +17,7 @@ except ValueError as e:
17 print(e) 17 print(e)
18 sys.exit(1) 18 sys.exit(1)
19 19
20__version__ = '0.10.0' 20__version__ = '0.10.1'
21 21
22# Make pyflakes happy 22# Make pyflakes happy
23assert Set 23assert Set
diff --git a/setup.py b/setup.py
index 17eccae..b20833d 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.10.0', 8 version='0.10.1',
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",