diff --git a/CHANGELOG.md b/CHANGELOG.md
index 50b4b723c25fbfd649cdb13be4072b653addb78c..50d99c378b700ca6da28a00bae4fa61a37a51afb 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 9ed9ff4cb23ffcd6050954ecc2172dedb2af2be5..11b515978874d074d7a14af714010a043ee5be72 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 8bc08af397ef309f45d9ed25713e2d372d80608e..815f0bc0ffd5e8735688de42866b6a339c96abf6 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 a52ee4126ff9bade571b2b7f21b2513df9e75954..62912b10ec7aceb6e170acce033f0bd0518b126b 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 bbdf1d998c63c94bd5308c7fc9dadf6e9853f1f5..d8972fd64a9d138e7940211d2ee0b6a0f62ae3f0 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",