Changelog for
python311-tld-0.13-1.2.noarch.rpm :
* Tue Mar 05 2024 Steve Kowalik
- Update to 0.13.0:
* Drop Python 2.7, 3.5 and 3.6 support. Minimum required version now is Python 3.7.- Switch to autosetup and pyproject macros.- No more greedy globs in %files.
* Mon Oct 17 2022 pgajdosAATTsuse.com- python-six is not required
* Sun Jun 20 2021 Sebastian Wagner - update to version 0.12.6: - Move Registry class from tld.registry to tld.base. - Reformat code using black. - Log information on updated resources of the update_tld_names.
* Wed May 19 2021 Sebastian Wagner - Update to version 0.12.5: Release dedicated to defenders of Armenia and Artsakh (Nagorno Karabakh) and all the victims of Turkish and Azerbaijani aggression. - Fixed lower-cased `parsed_url` attributes (`SplitResult`) when getting tld as object (`as_object=True`).- Update to version 0.12.4: - Tested against Python 3.9.
* Sun Dec 20 2020 Sebastian Wagner - Update to version 0.12.3: - Separate parsers for (a) public and private and (b) public only domains. This fixes a bug. If you want an old behaviour: The following code would raise exception in past. .. code-block:: python from tld import get_tld get_tld( \'http://silly.cc.ua\', search_private=False ) Now it would return `ua`. .. code-block:: python get_tld( \'http://silly.cc.ua\', search_private=False ) If you want old behavior, do as follows: .. code-block:: python from tld.utils import MozillaTLDSourceParser get_tld( \'http://silly.cc.ua\', search_private=False, parser_class=MozillaTLDSourceParser ) Same goes for ``get_fld``, ``process_url``, ``parse_tld`` and ``is_tld`` functions.
* Thu May 21 2020 Sebastian Wagner - Update to version 0.12.2: - Add mozilla license to dist. - Fix MyPy issues.
* Mon May 18 2020 Petr Gajdos - %python3_only -> %python_alternative
* Sun May 03 2020 Sebastian Wagner - update to version 0.12.1: - Correctly handling domain names ending with dot(s).
* Wed Apr 22 2020 Sebastian Wagner - update to version 0.12: - Use Public Suffix list instead of deprecated Mozilla\'s MXR.
* Thu Mar 26 2020 pgajdosAATTsuse.com- version update to 0.11.11
* - Minor speed-ups, reduce memory usage.