diff --git a/CHANGELOG.md b/CHANGELOG.md index 621b0ab1..3eb9404e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,12 +2,14 @@ ## [Unreleased] -## [0.1.20] - 2021-05-02 +## [0.2.0] - 2021-05-02 * added `--retries` option * added `source` feature for sites' mirrors * improved `submit` mode * lot of style and logic fixes +## [0.1.20] - 2021-05-02 [YANKED] + ## [0.1.19] - 2021-04-14 * added `--no-progressbar` option * fixed ascii tree bug diff --git a/maigret/maigret.py b/maigret/maigret.py index b521516f..50025561 100755 --- a/maigret/maigret.py +++ b/maigret/maigret.py @@ -36,7 +36,7 @@ from .submit import submit_dialog from .utils import get_dict_ascii_tree -__version__ = '0.1.20' +__version__ = '0.2.0' def notify_about_errors(search_results, query_notify): diff --git a/setup.py b/setup.py index a3e2b6ce..7c04065f 100644 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ requires = rf.read().splitlines() setup(name='maigret', - version='0.1.20', + version='0.2.0', description='Collect a dossier on a person by username from a huge number of sites', long_description=long_description, long_description_content_type="text/markdown",