summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjvoisin2018-11-10 12:46:31 +0100
committerjvoisin2018-11-10 12:46:31 +0100
commit505be24be96bae4c792b8ffa6e9f42301a80bd8a (patch)
tree3dbea5a34b53acdafd4b091b5ae2cd124bc16c91
parentef8265e86a91b769c173ba82312ea3bdb9912922 (diff)
Bump the changelog0.6.0
-rw-r--r--CHANGELOG.md11
-rw-r--r--doc/mat2.12
-rwxr-xr-xmat22
-rw-r--r--setup.py2
4 files changed, 14 insertions, 3 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 3f1ff34..6d7b8eb 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,14 @@
1# 0.6.0 - 2018-11-10
2
3- Add lightweight cleaning for jpeg
4- Add support for zip files
5- Add support for mp4 files
6- Improve metadata extraction for archives
7- Improve robustness against corrupted embedded files
8- Fix a possible security issue on some terminals (control character
9 injection via --show)
10- Various internal cleanup/improvements
11
1# 0.5.0 - 2018-10-23 12# 0.5.0 - 2018-10-23
2 13
3- Video (.avi files for now) support, via FFmpeg, optionally 14- Video (.avi files for now) support, via FFmpeg, optionally
diff --git a/doc/mat2.1 b/doc/mat2.1
index 2480efc..2239766 100644
--- a/doc/mat2.1
+++ b/doc/mat2.1
@@ -1,4 +1,4 @@
1.TH MAT2 "1" "October 2018" "MAT2 0.5.0" "User Commands" 1.TH MAT2 "1" "November 2018" "MAT2 0.6.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 351d97b..ff8a253 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.5.0' 18__version__ = '0.6.0'
19 19
20# Make pyflakes happy 20# Make pyflakes happy
21assert Tuple 21assert Tuple
diff --git a/setup.py b/setup.py
index 06ede62..499ac84 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.5.0', 8 version='0.6.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",