diff --git a/CHANGELOG.md b/CHANGELOG.md index 640e82af..da8c3297 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,8 @@ # Changelog ## [Unreleased] + +## [0.1.17] - 2021-03-30 * simplified maigret search API * improved documentation * fixed 403 response code ignoring bug diff --git a/maigret/maigret.py b/maigret/maigret.py index 2aaef46d..c6781a13 100755 --- a/maigret/maigret.py +++ b/maigret/maigret.py @@ -21,7 +21,7 @@ from .submit import submit_dialog from .utils import get_dict_ascii_tree -__version__ = '0.1.16' +__version__ = '0.1.17' async def main(): diff --git a/requirements.txt b/requirements.txt index dd9c1a95..c11d4208 100644 --- a/requirements.txt +++ b/requirements.txt @@ -26,7 +26,7 @@ python-socks==1.1.2 requests>=2.24.0 requests-futures==1.0.0 six==1.15.0 -socid-extractor>=0.0.15 +socid-extractor>=0.0.16 soupsieve==2.1 stem==1.8.0 torrequest==0.1.0 diff --git a/setup.py b/setup.py index 6eba16f5..48007bf7 100644 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ requires = rf.read().splitlines() setup(name='maigret', - version='0.1.15', + version='0.1.17', 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",