From 05167ad30c87ed9da0ccd0f35ece146663eff6f8 Mon Sep 17 00:00:00 2001 From: Soxoj Date: Wed, 2 Jun 2021 23:58:06 +0300 Subject: [PATCH] Bump to 0.3.0 --- CHANGELOG.md | 6 ++++++ README.md | 2 +- maigret/__version__.py | 2 +- setup.py | 2 +- 4 files changed, 9 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c01fabb1..64d4874c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ ## [Unreleased] +## [0.3.0] - 2021-06-02 +* added support of Tor and I2P sites +* added experimental DNS checking feature +* implemented sorting by data points for reports +* reports fixes + ## [0.2.4] - 2021-05-18 * cli output report * various improvements diff --git a/README.md b/README.md index e5042cdc..604d43f8 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ **Maigret** collect a dossier on a person **by username only**, checking for accounts on a huge number of sites and gathering all the available information from web pages. No API keys required. Maigret is an easy-to-use and powerful fork of [Sherlock](https://github.com/sherlock-project/sherlock). -Currently supported more than 2000 sites ([full list](./sites.md)), search is launched against 500 popular sites in descending order of popularity by default. +Currently supported more than 2000 sites ([full list](./sites.md)), search is launched against 500 popular sites in descending order of popularity by default. Also supported checking of Tor sites, I2P sites, and domains (via DNS resolving). ## Main features diff --git a/maigret/__version__.py b/maigret/__version__.py index 3aaa41ad..7f50aab6 100644 --- a/maigret/__version__.py +++ b/maigret/__version__.py @@ -1,3 +1,3 @@ """Maigret version file""" -__version__ = '0.2.4' +__version__ = '0.3.0' diff --git a/setup.py b/setup.py index 56ac8919..c16bb309 100644 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ requires = rf.read().splitlines() setup(name='maigret', - version='0.2.4', + version='0.3.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",