From 7813263096767c8928d868a42dd196bbf6a7bb51 Mon Sep 17 00:00:00 2001 From: Soxoj Date: Fri, 7 Jul 2023 21:09:01 +0200 Subject: [PATCH] Bump to v0.0.24 --- CHANGELOG.md | 9 +++++++++ setup.py | 2 +- socid_extractor/__init__.py | 2 +- 3 files changed, 11 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0585321..692c6e9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,15 @@ ## [Unreleased] +## [0.0.24] - 2023-07-07 +* Added aparat.com, added list of methods by @soxoj in https://github.com/soxoj/socid-extractor/pull/116 +* Bump pytest from 6.2.5 to 7.1.2 by @dependabot in https://github.com/soxoj/socid-extractor/pull/126 +* Update beautifulsoup4 requirement from ~=4.10.0 to ~=4.11.1 by @dependabot in https://github.com/soxoj/socid-extractor/pull/125 +* Some tests and TikTok parsing fixed by @soxoj in https://github.com/soxoj/socid-extractor/pull/127 +* Added UnstoppableDomains parser for Maigret by @soxoj in https://github.com/soxoj/socid-extractor/pull/154 + +**Full Changelog**: https://github.com/soxoj/socid-extractor/compare/v0.0.23...v0.0.24 + ## [0.0.23] - 2022-01-02 * Accelerated module import time by @soxoj in https://github.com/soxoj/socid-extractor/pull/104 * Reddit, Twitch and Last.fm fixes by @soxoj in https://github.com/soxoj/socid-extractor/pull/105 diff --git a/setup.py b/setup.py index 545dced..dfac534 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ long_description = fh.read() setup(name='socid-extractor', - version='0.0.23', + version='0.0.24', 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 2bef5de..e9a0e73 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.23' +__version__ = '0.0.24' __title__ = 'socid_extractor' __package__ = 'socid_extractor' __author__ = 'soxoj'