diff --git a/docs/changelog.rst b/docs/changelog.rst index 6563891..ae2490f 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -2,6 +2,18 @@ Changelog ========= +Version 0.15.0 +-------------- + +Released on 2024-04-23. + +* Support Python 3.12, drop Python 3.7 support. +* Add READMEs for dictionaries. +* Add Basque hyphenation dictionary. +* Update Catalan and Hungarian dictionaries. +* Use Ruff instead of Flake8 and isort. + + Version 0.14.0 -------------- diff --git a/pyphen/__init__.py b/pyphen/__init__.py index 0be8a9a..84d9f52 100755 --- a/pyphen/__init__.py +++ b/pyphen/__init__.py @@ -11,7 +11,7 @@ from importlib import resources from pathlib import Path -VERSION = __version__ = '0.14.0' +VERSION = __version__ = '0.15.0' __all__ = ('Pyphen', 'LANGUAGES', 'language_fallback')