diff --git a/CHANGELOG.md b/CHANGELOG.md index eae249e..68eec09 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +# 0.13.0 - 2022-07-06 + +- Fix an arbitrary file read +- Add support for heic files + # 0.12.4 - 2022-04-30 - Fix possible errors/crashes when processing multiple files diff --git a/doc/mat2.1 b/doc/mat2.1 index 2cd90e8..16cd547 100644 --- a/doc/mat2.1 +++ b/doc/mat2.1 @@ -1,4 +1,4 @@ -.TH mat2 "1" "April 2022" "mat2 0.12.4" "User Commands" +.TH mat2 "1" "July 2022" "mat2 0.13.0" "User Commands" .SH NAME mat2 \- the metadata anonymisation toolkit 2 diff --git a/mat2 b/mat2 index 21be912..342003e 100755 --- a/mat2 +++ b/mat2 @@ -17,7 +17,7 @@ except ValueError as ex: print(ex) sys.exit(1) -__version__ = '0.12.4' +__version__ = '0.13.0' # Make pyflakes happy assert Set diff --git a/setup.py b/setup.py index 273a84e..8d6005e 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ with open("README.md", encoding='utf-8') as fh: setuptools.setup( name="mat2", - version='0.12.4', + version='0.13.0', author="Julien (jvoisin) Voisin", author_email="julien.voisin+mat2@dustri.org", description="A handy tool to trash your metadata",