diff --git a/CHANGELOG.md b/CHANGELOG.md index 9d91af7..6bb9914 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,11 @@ ## [Unreleased] +## [0.1.8] - 2020-12-31 +* added XMind export +* more than 1500 sites supported +* parallel processing of requests + ## [0.1.7] - 2020-12-11 * fixed proxies support * fixed aiohttp stuff to prevent python 3.7 bugs diff --git a/README.md b/README.md index 4c77b4d..14b2500 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ Purpose of Maigret - **collect a dossier on a person by username only**, checkin This is a [sherlock](https://github.com/sherlock-project/) fork with cool features under heavy development. *Don't forget to regularly update source code from repo*. -Currently supported >1300 sites ([full list](./sites.md)). +Currently supported more than 1500 sites ([full list](./sites.md)). ## Main features diff --git a/maigret/maigret.py b/maigret/maigret.py index 0e69290..003df7b 100755 --- a/maigret/maigret.py +++ b/maigret/maigret.py @@ -28,7 +28,7 @@ from .sites import SitesInformation import xmind -__version__ = '0.1.7' +__version__ = '0.1.8' supported_recursive_search_ids = ( 'yandex_public_id', diff --git a/setup.py b/setup.py index 078235f..8d63a76 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.7', + version='0.1.8', 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",