From a9052ab4a6398cb800d94618f220e61ab2ea4779 Mon Sep 17 00:00:00 2001 From: Soxoj Date: Sat, 16 Jan 2021 17:10:57 +0300 Subject: [PATCH] Bump version to 1.0.11 --- CHANGELOG.md | 6 ++++-- maigret/maigret.py | 2 +- requirements.txt | 2 +- setup.py | 2 +- 4 files changed, 7 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0dd8436..c9fb8bb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,10 @@ # Changelog ## [Unreleased] -* tags bugfix -* custom data checks bugfix + +## [0.1.11] - 2021-01-16 +* tags and custom data checks bugfixes +* added parsing activation logic ## [0.1.10] - 2021-01-13 * added report static resources into package diff --git a/maigret/maigret.py b/maigret/maigret.py index 8f85ea4..538f14f 100755 --- a/maigret/maigret.py +++ b/maigret/maigret.py @@ -30,7 +30,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.10' +__version__ = '0.1.11' supported_recursive_search_ids = ( 'yandex_public_id', diff --git a/requirements.txt b/requirements.txt index 84706fc..5d156a6 100644 --- a/requirements.txt +++ b/requirements.txt @@ -28,7 +28,7 @@ reportlab==3.5.59 requests==2.25.1 requests-futures==1.0.0 six==1.15.0 -socid-extractor>0.0.2 +socid-extractor>=0.0.4 soupsieve==2.1 stem==1.8.0 torrequest==0.1.0 diff --git a/setup.py b/setup.py index d76bf69..420e130 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.10', + version='0.1.11', 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",