diff --git a/docs/changelog.rst b/docs/changelog.rst index 8b7245c..aa97a4d 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -2,6 +2,15 @@ Changelog ========= +Version 0.17.0 +-------------- + +Released on 2024-10-28. + +* Support Python 3.13, drop Python 3.8 support. +* Update Hungarian dictionary. + + Version 0.16.0 -------------- diff --git a/pyphen/__init__.py b/pyphen/__init__.py index bd1429f..daf14cd 100755 --- a/pyphen/__init__.py +++ b/pyphen/__init__.py @@ -11,7 +11,7 @@ from importlib import resources from pathlib import Path -VERSION = __version__ = '0.16.0' +VERSION = __version__ = '0.17.0' __all__ = ('Pyphen', 'LANGUAGES', 'language_fallback')