summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.md5
-rw-r--r--doc/mat2.12
-rwxr-xr-xmat22
-rw-r--r--setup.py2
4 files changed, 8 insertions, 3 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index c44b7a5..1442b47 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,8 @@
1# 0.13.1 - 2023-01-07
2
3- Improve xlsx support
4- Remove the Nautilus extension
5
1# 0.13.0 - 2022-07-06 6# 0.13.0 - 2022-07-06
2 7
3- Fix an arbitrary file read (CVE-2022-35410) 8- Fix an arbitrary file read (CVE-2022-35410)
diff --git a/doc/mat2.1 b/doc/mat2.1
index 16cd547..2872aaf 100644
--- a/doc/mat2.1
+++ b/doc/mat2.1
@@ -1,4 +1,4 @@
1.TH mat2 "1" "July 2022" "mat2 0.13.0" "User Commands" 1.TH mat2 "1" "January 2023" "mat2 0.13.1" "User Commands"
2 2
3.SH NAME 3.SH NAME
4mat2 \- the metadata anonymisation toolkit 2 4mat2 \- the metadata anonymisation toolkit 2
diff --git a/mat2 b/mat2
index a11c1c7..283263b 100755
--- a/mat2
+++ b/mat2
@@ -16,7 +16,7 @@ except ValueError as ex:
16 print(ex) 16 print(ex)
17 sys.exit(1) 17 sys.exit(1)
18 18
19__version__ = '0.13.0' 19__version__ = '0.13.1'
20 20
21logging.basicConfig(format='%(levelname)s: %(message)s', level=logging.WARNING) 21logging.basicConfig(format='%(levelname)s: %(message)s', level=logging.WARNING)
22 22
diff --git a/setup.py b/setup.py
index 8d6005e..ca97f47 100644
--- a/setup.py
+++ b/setup.py
@@ -5,7 +5,7 @@ with open("README.md", encoding='utf-8') as fh:
5 5
6setuptools.setup( 6setuptools.setup(
7 name="mat2", 7 name="mat2",
8 version='0.13.0', 8 version='0.13.1',
9 author="Julien (jvoisin) Voisin", 9 author="Julien (jvoisin) Voisin",
10 author_email="julien.voisin+mat2@dustri.org", 10 author_email="julien.voisin+mat2@dustri.org",
11 description="A handy tool to trash your metadata", 11 description="A handy tool to trash your metadata",