summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjvoisin2018-09-01 15:59:52 +0200
committerjvoisin2018-09-01 16:00:41 +0200
commitb7a862268299d2902ca215fb15bd098e23aae7c2 (patch)
treee6063cd14507f762f77a3e046b6277bce11fdec3
parent3e2890eb9e57915cb189d69193f4119069eb2339 (diff)
Bump the changelog0.3.1
-rw-r--r--CHANGELOG.md10
-rw-r--r--doc/mat.12
-rwxr-xr-xmat22
-rw-r--r--setup.py2
4 files changed, 13 insertions, 3 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 8af906c..dfd81c4 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,13 @@
1# 0.3.1 - 2018-09-01
2
3- Document how to install MAT2 for various distributions
4- Fix various typos in the documentation/comments
5- Add ArchLinux to the CI to ensure that MAT2 is running on it
6- Fix the handling of files with a name ending in `.JPG`
7- Improve the detection of unsupported extensions in upper-case
8- Streamline MAT2's logging
9
10
1# 0.3.0 - 2018-08-03 11# 0.3.0 - 2018-08-03
2 12
3- Add a check for missing dependencies 13- Add a check for missing dependencies
diff --git a/doc/mat.1 b/doc/mat.1
index ddc009a..e7ad3ad 100644
--- a/doc/mat.1
+++ b/doc/mat.1
@@ -1,4 +1,4 @@
1.TH MAT2 "1" "August 2018" "MAT2 0.3.0" "User Commands" 1.TH MAT2 "1" "September 2018" "MAT2 0.3.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 dc316e9..f403d21 100755
--- a/mat2
+++ b/mat2
@@ -15,7 +15,7 @@ except ValueError as e:
15 print(e) 15 print(e)
16 sys.exit(1) 16 sys.exit(1)
17 17
18__version__ = '0.3.0' 18__version__ = '0.3.1'
19 19
20def __check_file(filename: str, mode: int=os.R_OK) -> bool: 20def __check_file(filename: str, mode: int=os.R_OK) -> bool:
21 if not os.path.exists(filename): 21 if not os.path.exists(filename):
diff --git a/setup.py b/setup.py
index c8e6582..9773e49 100644
--- a/setup.py
+++ b/setup.py
@@ -5,7 +5,7 @@ with open("README.md", "r") as fh:
5 5
6setuptools.setup( 6setuptools.setup(
7 name="mat2", 7 name="mat2",
8 version='0.3.0', 8 version='0.3.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",