From 5d43253f69cf15590916b40b48ffb9a612ba03e3 Mon Sep 17 00:00:00 2001 From: Soxoj <31013580+soxoj@users.noreply.github.com> Date: Mon, 24 Jul 2023 12:53:01 +0600 Subject: [PATCH] Bump to v0.0.25 (#157) --- CHANGELOG.md | 5 +++++ setup.py | 2 +- socid_extractor/__init__.py | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 692c6e9..e0bad53 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,11 @@ ## [Unreleased] +## [0.0.24] - 2023-07-24 +* Added memory.lol by @soxoj in https://github.com/soxoj/socid-extractor/pull/156 + +**Full Changelog**: https://github.com/soxoj/socid-extractor/compare/v0.0.24...v0.0.25 + ## [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 diff --git a/setup.py b/setup.py index dfac534..85753f0 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ long_description = fh.read() setup(name='socid-extractor', - version='0.0.24', + version='0.0.25', 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 e9a0e73..029621f 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.24' +__version__ = '0.0.25' __title__ = 'socid_extractor' __package__ = 'socid_extractor' __author__ = 'soxoj'