diff --git a/CHANGELOG.md b/CHANGELOG.md index eae249e477310fa7f0a30980d3d605010429e4b0..68eec098cece5bfc7afea44ceda10e154f77e140 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 2cd90e8796e48857a7dca1d74bfc4431e32d2260..16cd547fd9f99d71f617e06be2a43d882bfa037f 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 21be91243f16655635a3b670e26f220096fe3310..342003ed3c09ef76954cdbd87dd22f7d6f541b17 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 273a84e7440f1aa3e8981bbd96ab2063834d5880..8d6005e677f0a841d5842262a0a221b31bfc0d81 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",