From 023c19e28267d175ded27163e4b48c9289604e4c Mon Sep 17 00:00:00 2001 From: Guillaume Ayoub Date: Tue, 29 Oct 2024 12:00:44 +0100 Subject: [PATCH] Version 0.17.0 --- docs/changelog.rst | 9 +++++++++ pyphen/__init__.py | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) 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')