diff options
| -rw-r--r-- | CHANGELOG.md | 9 | ||||
| -rwxr-xr-x | mat2 | 2 | ||||
| -rw-r--r-- | setup.py | 2 |
3 files changed, 11 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index de277e8..0116dad 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md | |||
| @@ -1,3 +1,12 @@ | |||
| 1 | # 0.2.0 - 2018-07-010 | ||
| 2 | |||
| 3 | - Fix various crashes dues to malformed files | ||
| 4 | - Simplify various code-paths | ||
| 5 | - Remove superfluous debug message | ||
| 6 | - Remove the `--check` option that never was implemented anyway | ||
| 7 | - Add a `-c` option to check for MAT2's dependencies | ||
| 8 | |||
| 9 | |||
| 1 | # 0.1.3 - 2018-07-06 | 10 | # 0.1.3 - 2018-07-06 |
| 2 | 11 | ||
| 3 | - Improve MAT2 resilience against corrupted images | 12 | - Improve MAT2 resilience against corrupted images |
| @@ -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.1.3' | 17 | __version__ = '0.2.0' |
| 18 | 18 | ||
| 19 | def __check_file(filename: str, mode: int = os.R_OK) -> bool: | 19 | def __check_file(filename: str, mode: int = os.R_OK) -> bool: |
| 20 | if not os.path.exists(filename): | 20 | if not os.path.exists(filename): |
| @@ -5,7 +5,7 @@ with open("README.md", "r") as fh: | |||
| 5 | 5 | ||
| 6 | setuptools.setup( | 6 | setuptools.setup( |
| 7 | name="mat2", | 7 | name="mat2", |
| 8 | version='0.1.3', | 8 | version='0.2.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", |
