From ddd9f57f37e1cd9d70b4ed8aa9f357bcae3b339c Mon Sep 17 00:00:00 2001 From: Matias Micheltorena <m@matiargs.com> Date: Tue, 16 Jul 2024 18:20:29 -0300 Subject: [PATCH] Bump the changelog --- CHANGELOG.md | 3 +++ doc/mat2.1 | 2 +- mat2 | 2 +- pyproject.toml | 2 +- setup.py | 2 +- 5 files changed, 7 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 50b4b72..50d99c3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +# 0.13.5 - 2023-08-02 +- Keep orientation metadata on jpeg and tiff files + # 0.13.4 - 2023-08-02 - Add documentation about mat2 on OSX diff --git a/doc/mat2.1 b/doc/mat2.1 index 9ed9ff4..11b5159 100644 --- a/doc/mat2.1 +++ b/doc/mat2.1 @@ -1,4 +1,4 @@ -.TH mat2 "1" "August 2023" "mat2 0.13.4" "User Commands" +.TH mat2 "1" "July 2024" "mat2 0.13.5" "User Commands" .SH NAME mat2 \- the metadata anonymisation toolkit 2 diff --git a/mat2 b/mat2 index 8bc08af..815f0bc 100755 --- a/mat2 +++ b/mat2 @@ -17,7 +17,7 @@ except ValueError as ex: print(ex) sys.exit(1) -__version__ = '0.13.4' +__version__ = '0.13.5' logging.basicConfig(format='%(levelname)s: %(message)s', level=logging.WARNING) diff --git a/pyproject.toml b/pyproject.toml index a52ee41..62912b1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "mat2" -version = "0.13.4" +version = "0.13.5" description = "mat2 is a metadata removal tool, supporting a wide range of commonly used file formats, written in python3: at its core, it's a library, used by an eponymous command-line interface, as well as several file manager extensions." readme = "README.md" license = {file = "LICENSE"} diff --git a/setup.py b/setup.py index bbdf1d9..d8972fd 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.13.4', + version='0.13.5', author="Julien (jvoisin) Voisin", author_email="julien.voisin+mat2@dustri.org", description="A handy tool to trash your metadata", -- GitLab