Bump the changelog
This commit is contained in:
parent
ef8265e86a
commit
505be24be9
11
CHANGELOG.md
11
CHANGELOG.md
@ -1,3 +1,14 @@
|
|||||||
|
# 0.6.0 - 2018-11-10
|
||||||
|
|
||||||
|
- Add lightweight cleaning for jpeg
|
||||||
|
- Add support for zip files
|
||||||
|
- Add support for mp4 files
|
||||||
|
- Improve metadata extraction for archives
|
||||||
|
- Improve robustness against corrupted embedded files
|
||||||
|
- Fix a possible security issue on some terminals (control character
|
||||||
|
injection via --show)
|
||||||
|
- Various internal cleanup/improvements
|
||||||
|
|
||||||
# 0.5.0 - 2018-10-23
|
# 0.5.0 - 2018-10-23
|
||||||
|
|
||||||
- Video (.avi files for now) support, via FFmpeg, optionally
|
- Video (.avi files for now) support, via FFmpeg, optionally
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
.TH MAT2 "1" "October 2018" "MAT2 0.5.0" "User Commands"
|
.TH MAT2 "1" "November 2018" "MAT2 0.6.0" "User Commands"
|
||||||
|
|
||||||
.SH NAME
|
.SH NAME
|
||||||
mat2 \- the metadata anonymisation toolkit 2
|
mat2 \- the metadata anonymisation toolkit 2
|
||||||
|
2
mat2
2
mat2
@ -15,7 +15,7 @@ except ValueError as e:
|
|||||||
print(e)
|
print(e)
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
|
|
||||||
__version__ = '0.5.0'
|
__version__ = '0.6.0'
|
||||||
|
|
||||||
# Make pyflakes happy
|
# Make pyflakes happy
|
||||||
assert Tuple
|
assert Tuple
|
||||||
|
2
setup.py
2
setup.py
@ -5,7 +5,7 @@ with open("README.md", "r") as fh:
|
|||||||
|
|
||||||
setuptools.setup(
|
setuptools.setup(
|
||||||
name="mat2",
|
name="mat2",
|
||||||
version='0.5.0',
|
version='0.6.0',
|
||||||
author="Julien (jvoisin) Voisin",
|
author="Julien (jvoisin) Voisin",
|
||||||
author_email="julien.voisin+mat2@dustri.org",
|
author_email="julien.voisin+mat2@dustri.org",
|
||||||
description="A handy tool to trash your metadata",
|
description="A handy tool to trash your metadata",
|
||||||
|
Loading…
Reference in New Issue
Block a user