From c4791c072d70e1343d26a2a4d059ff45796837fa Mon Sep 17 00:00:00 2001 From: Soxoj Date: Wed, 23 Jun 2021 19:35:49 +0300 Subject: [PATCH] Bump to 0.0.22 --- CHANGELOG.md | 6 ++++++ setup.py | 2 +- socid_extractor/__init__.py | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 26a8684..f40bbd2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ ## [Unreleased] +## [0.0.22] - 2021-06-23 +* added Tinder, Disqus API and ifunny.co +* fixed Twitter scraping from CLI +* extended My.Mail.ru extractor +* improved tests + ## [0.0.21] - 2021-05-31 * added ICQ, Pastebin, Periscope, Paypal, Imgur API * improved Google Docs extractors diff --git a/setup.py b/setup.py index bc8fd4b..cfd9760 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ long_description = fh.read() setup(name='socid-extractor', - version='0.0.21', + version='0.0.22', description='Extract accounts\' identifiers from personal pages on various platforms', long_description=long_description, long_description_content_type="text/markdown", diff --git a/socid_extractor/__init__.py b/socid_extractor/__init__.py index b4d9874..f39c6d0 100644 --- a/socid_extractor/__init__.py +++ b/socid_extractor/__init__.py @@ -1,6 +1,6 @@ from .main import extract, parse, parse_cookies, mutate_url -__version__ = '0.0.21' +__version__ = '0.0.22' __title__ = 'socid_extractor' __package__ = 'socid_extractor' __author__ = 'soxoj'