Skip to content

Commit

Permalink
Bump to v0.0.23 (#115)
Browse files Browse the repository at this point in the history
* Bump to v0.0.23
* Fixed Disqus test
  • Loading branch information
soxoj authored Jan 2, 2022
1 parent e2499d3 commit e4c6968
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 3 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,20 @@

## [Unreleased]

## [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
* September update by @cyb3rk0tik in https://github.com/soxoj/socid-extractor/pull/106
* Bump pytest-xdist from 2.2.1 to 2.4.0 by @dependabot in https://github.com/soxoj/socid-extractor/pull/107
* Bump pytest-rerunfailures from 9.1.1 to 10.2 by @dependabot in https://github.com/soxoj/socid-extractor/pull/108
* Tests fixes by @soxoj in https://github.com/soxoj/socid-extractor/pull/109
* Fixes by @soxoj in https://github.com/soxoj/socid-extractor/pull/110
* Bump pytest-xdist from 2.4.0 to 2.5.0 by @dependabot in https://github.com/soxoj/socid-extractor/pull/111
* Added VK foaf page check by @soxoj in https://github.com/soxoj/socid-extractor/pull/113
* Update beautifulsoup4 requirement from ~=4.9.1 to ~=4.10.0 by @dependabot in https://github.com/soxoj/socid-extractor/pull/114

**Full Changelog**: https://github.com/soxoj/socid-extractor/compare/v0.0.22...v0.0.23

## [0.0.22] - 2021-06-23
* added Tinder, Disqus API and ifunny.co
* fixed Twitter scraping from CLI
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
long_description = fh.read()

setup(name='socid-extractor',
version='0.0.22',
version='0.0.23',
description='Extract accounts\' identifiers from personal pages on various platforms',
long_description=long_description,
long_description_content_type="text/markdown",
Expand Down
2 changes: 1 addition & 1 deletion socid_extractor/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from .main import extract, parse, parse_cookies, mutate_url

__version__ = '0.0.22'
__version__ = '0.0.23'
__title__ = 'socid_extractor'
__package__ = 'socid_extractor'
__author__ = 'soxoj'
Expand Down
2 changes: 1 addition & 1 deletion tests/test_e2e.py
Original file line number Diff line number Diff line change
Expand Up @@ -876,7 +876,7 @@ def test_disqus_api():

assert info.get('id') == '1593'
assert info.get('fullname') == 'margaret'
assert info.get('reputation') == '1.231755'
assert float(info.get('reputation')) > 1
assert info.get('reputation_label') == 'Average'
assert info.get('following_count') == '0'
assert info.get('follower_count') == '0'
Expand Down

0 comments on commit e4c6968

Please sign in to comment.