From 9386266d3d32d973641432a6d62a31159460e939 Mon Sep 17 00:00:00 2001 From: Soxoj Date: Thu, 28 Jan 2021 20:40:42 +0300 Subject: [PATCH] Bump version to v0.1.12 --- CHANGELOG.md | 4 ++++ maigret/maigret.py | 2 +- setup.py | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c9fb8bb..7431f2a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ ## [Unreleased] +## [0.1.12] - 2021-01-28 +* added support of custom cookies +* fixed lots of false positives + ## [0.1.11] - 2021-01-16 * tags and custom data checks bugfixes * added parsing activation logic diff --git a/maigret/maigret.py b/maigret/maigret.py index be9b179..5a44a12 100755 --- a/maigret/maigret.py +++ b/maigret/maigret.py @@ -26,7 +26,7 @@ from .report import save_csv_report, save_xmind_report, save_html_report, save_p from .result import QueryResult, QueryStatus from .sites import MaigretDatabase, MaigretSite -__version__ = '0.1.11' +__version__ = '0.1.12' supported_recursive_search_ids = ( 'yandex_public_id', diff --git a/setup.py b/setup.py index 420e130..f23982c 100644 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ with open('requirements.txt') as rf: requires = rf.read().splitlines() setup(name='maigret', - version='0.1.11', + version='0.1.12', 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",