summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.md13
-rw-r--r--doc/mat2.12
-rwxr-xr-xmat22
-rw-r--r--setup.py2
4 files changed, 16 insertions, 3 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index ee65463..acf23a9 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,16 @@
1# 0.5.0 - 2018-10-23
2
3- Video (.avi files for now) support, via FFmpeg, optionally
4- Lightweight cleaning for png and tiff files
5- Processing files starting with a dash is now quicker
6- Metadata are now displayed sorted
7- Recursive metadata support for FLAC files
8- Unsupported extensions aren't displayed in `/.mat -l` anymore
9- Improve the display when no metadata are found
10- Update the logo according to the GNOME guidelines
11- The testsuite is now runnable on the installed version of mat2
12- Various internal cleanup/improvements
13
1# 0.4.0 - 2018-10-03 14# 0.4.0 - 2018-10-03
2 15
3- There is now a policy, for advanced users, to deal with unknown embedded fileformats 16- There is now a policy, for advanced users, to deal with unknown embedded fileformats
diff --git a/doc/mat2.1 b/doc/mat2.1
index 3d7d57d..2480efc 100644
--- a/doc/mat2.1
+++ b/doc/mat2.1
@@ -1,4 +1,4 @@
1.TH MAT2 "1" "October 2018" "MAT2 0.4.0" "User Commands" 1.TH MAT2 "1" "October 2018" "MAT2 0.5.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 01263b6..be63829 100755
--- a/mat2
+++ b/mat2
@@ -14,7 +14,7 @@ except ValueError as e:
14 print(e) 14 print(e)
15 sys.exit(1) 15 sys.exit(1)
16 16
17__version__ = '0.4.0' 17__version__ = '0.5.0'
18 18
19# Make pyflakes happy 19# Make pyflakes happy
20assert Tuple 20assert Tuple
diff --git a/setup.py b/setup.py
index e893bad..06ede62 100644
--- a/setup.py
+++ b/setup.py
@@ -5,7 +5,7 @@ with open("README.md", "r") as fh:
5 5
6setuptools.setup( 6setuptools.setup(
7 name="mat2", 7 name="mat2",
8 version='0.4.0', 8 version='0.5.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",