1
0
Fork 0

Bump the changelog

This commit is contained in:
jvoisin 2018-08-03 22:20:24 +02:00
parent e27768824a
commit 2ce1dc793e
4 changed files with 15 additions and 4 deletions

View File

@ -1,4 +1,15 @@
# 0.2.0 - 2018-07-010 # 0.3.0 - 2018-08-03
- Add a check for missing dependencies
- Add Nautilus extension
- Minors code simplifications
- Improve our linters' coverage
- Add a manpage
- Add folder/multiple files related tests
- Change the logo
# 0.2.0 - 2018-07-10
- Fix various crashes dues to malformed files - Fix various crashes dues to malformed files
- Simplify various code-paths - Simplify various code-paths

View File

@ -1,4 +1,4 @@
.TH MAT2 "1" "July 2018" "MAT2 0.2.0" "User Commands" .TH MAT2 "1" "August 2018" "MAT2 0.3.0" "User Commands"
.SH NAME .SH NAME
mat2 \- the metadata anonymisation toolkit 2 mat2 \- the metadata anonymisation toolkit 2

2
mat2
View File

@ -14,7 +14,7 @@ except ValueError as e:
print(e) print(e)
sys.exit(1) sys.exit(1)
__version__ = '0.2.0' __version__ = '0.3.0'
def __check_file(filename: str, mode: int=os.R_OK) -> bool: def __check_file(filename: str, mode: int=os.R_OK) -> bool:
if not os.path.exists(filename): if not os.path.exists(filename):

View File

@ -5,7 +5,7 @@ with open("README.md", "r") as fh:
setuptools.setup( setuptools.setup(
name="mat2", name="mat2",
version='0.2.0', version='0.3.0',
author="Julien (jvoisin) Voisin", author="Julien (jvoisin) Voisin",
author_email="julien.voisin+mat2@dustri.org", author_email="julien.voisin+mat2@dustri.org",
description="A handy tool to trash your metadata", description="A handy tool to trash your metadata",