summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.md13
-rw-r--r--doc/mat.12
-rwxr-xr-xmat22
-rw-r--r--setup.py2
4 files changed, 15 insertions, 4 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 0116dad..8af906c 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,4 +1,15 @@
1# 0.2.0 - 2018-07-010 1# 0.3.0 - 2018-08-03
2
3- Add a check for missing dependencies
4- Add Nautilus extension
5- Minors code simplifications
6- Improve our linters' coverage
7- Add a manpage
8- Add folder/multiple files related tests
9- Change the logo
10
11
12# 0.2.0 - 2018-07-10
2 13
3- Fix various crashes dues to malformed files 14- Fix various crashes dues to malformed files
4- Simplify various code-paths 15- Simplify various code-paths
diff --git a/doc/mat.1 b/doc/mat.1
index a69bf7c..ddc009a 100644
--- a/doc/mat.1
+++ b/doc/mat.1
@@ -1,4 +1,4 @@
1.TH MAT2 "1" "July 2018" "MAT2 0.2.0" "User Commands" 1.TH MAT2 "1" "August 2018" "MAT2 0.3.0" "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 d24f2bc..35b5aee 100755
--- a/mat2
+++ b/mat2
@@ -14,7 +14,7 @@ except ValueError as e:
14 print(e) 14 print(e)
15 sys.exit(1) 15 sys.exit(1)
16 16
17__version__ = '0.2.0' 17__version__ = '0.3.0'
18 18
19def __check_file(filename: str, mode: int=os.R_OK) -> bool: 19def __check_file(filename: str, mode: int=os.R_OK) -> bool:
20 if not os.path.exists(filename): 20 if not os.path.exists(filename):
diff --git a/setup.py b/setup.py
index ef7024e..c8e6582 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.2.0', 8 version='0.3.0',
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",