diff --git a/CHANGELOG.md b/CHANGELOG.md index 1981ae1..80cd056 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,20 @@ ## [Unreleased] +## [0.4.3] - 2022-04-13 +* Added Sites to data.json by @kustermariocoding in https://github.com/soxoj/maigret/pull/386 +* added new Websites to data.json by @kustermariocoding in https://github.com/soxoj/maigret/pull/390 +* Skipped broken tests by @soxoj in https://github.com/soxoj/maigret/pull/397 +* Added new Websites to data.json by @kustermariocoding in https://github.com/soxoj/maigret/pull/401 +* Added new Websites to data.json by @kustermariocoding in https://github.com/soxoj/maigret/pull/404 +* Updated statistics by @soxoj in https://github.com/soxoj/maigret/pull/406 +* Added new Websites to data.json by @kustermariocoding in https://github.com/soxoj/maigret/pull/413 +* Disabled houzz.com, updated sites statistics by @soxoj in https://github.com/soxoj/maigret/pull/422 +* Fixed last false positives by @soxoj in https://github.com/soxoj/maigret/pull/424 +* Fixed actual false positives by @soxoj in https://github.com/soxoj/maigret/pull/431 + +**Full Changelog**: https://github.com/soxoj/maigret/compare/v0.4.2...v0.4.3 + ## [0.4.2] - 2022-03-07 * [ImgBot] Optimize images by @imgbot in https://github.com/soxoj/maigret/pull/319 * Bump pytest-asyncio from 0.17.0 to 0.17.1 by @dependabot in https://github.com/soxoj/maigret/pull/321 diff --git a/docs/source/conf.py b/docs/source/conf.py index 506caab..385bf6b 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -6,8 +6,8 @@ project = 'Maigret' copyright = '2021, soxoj' author = 'soxoj' -release = '0.4.2' -version = '0.4.2' +release = '0.4.3' +version = '0.4.3' # -- General configuration diff --git a/docs/source/development.rst b/docs/source/development.rst index c17ed63..4e102a5 100644 --- a/docs/source/development.rst +++ b/docs/source/development.rst @@ -69,7 +69,7 @@ PyPi package. 4. Get auto-generate release notes: - Open https://github.com/soxoj/maigret/releases/new -- Click `Choose a tag`, enter `test` +- Click `Choose a tag`, enter `v0.4.0` (your version) - Click `Create new tag` - Press `+ Auto-generate release notes` - Copy all the text from description text field below diff --git a/maigret/__version__.py b/maigret/__version__.py index 91d78cc..4742473 100644 --- a/maigret/__version__.py +++ b/maigret/__version__.py @@ -1,3 +1,3 @@ """Maigret version file""" -__version__ = '0.4.2' +__version__ = '0.4.3' diff --git a/setup.py b/setup.py index 45d2987..3789c54 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ with open('requirements.txt') as rf: requires = rf.read().splitlines() setup(name='maigret', - version='0.4.2', + version='0.4.3', 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",