From d0ab2c3023fd3be4e2eb1f76a8d8b273a099257b Mon Sep 17 00:00:00 2001 From: jvoisin Date: Fri, 10 May 2019 22:16:38 +0200 Subject: [PATCH] Bump the changelog --- CHANGELOG.md | 10 ++++++++++ doc/mat2.1 | 2 +- mat2 | 2 +- setup.py | 2 +- 4 files changed, 13 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1b53c98..941c0a8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ +# 0.9.0 - 2019-05-10 + +- Add tar/tar.gz/tar.bz2/tar.zx archives support +- Add support for xhtml files +- Improve handling of read-only files +- Improve a bit the command line's documentation +- Fix a confusing error message +- Add even more tests +- Usuals internal cleanups/refactorings + # 0.8.0 - 2019-02-28 - Add support for epub files diff --git a/doc/mat2.1 b/doc/mat2.1 index f4071ae..c63b46b 100644 --- a/doc/mat2.1 +++ b/doc/mat2.1 @@ -1,4 +1,4 @@ -.TH MAT2 "1" "February 2019" "MAT2 0.8.0" "User Commands" +.TH MAT2 "1" "May 2019" "MAT2 0.9.0" "User Commands" .SH NAME mat2 \- the metadata anonymisation toolkit 2 diff --git a/mat2 b/mat2 index f180d5c..4b2751e 100755 --- a/mat2 +++ b/mat2 @@ -15,7 +15,7 @@ except ValueError as e: print(e) sys.exit(1) -__version__ = '0.8.0' +__version__ = '0.9.0' # Make pyflakes happy assert Tuple diff --git a/setup.py b/setup.py index 3be8ccb..663b9d6 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ with open("README.md", encoding='utf-8') as fh: setuptools.setup( name="mat2", - version='0.8.0', + version='0.9.0', author="Julien (jvoisin) Voisin", author_email="julien.voisin+mat2@dustri.org", description="A handy tool to trash your metadata",