From 781cb19a2085c19e125a0519b25409a4f0dabbd0 Mon Sep 17 00:00:00 2001 From: Guillaume Ayoub Date: Mon, 20 Jan 2025 14:18:00 +0100 Subject: [PATCH] Version 0.17.2 --- 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 8bea8ec..b5a370c 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -2,6 +2,15 @@ Changelog ========= +Version 0.17.2 +-------------- + +Released on 2025-01-20. + +* Fix Oriya dictionary name. +* Update documentation. + + Version 0.17.1 -------------- diff --git a/pyphen/__init__.py b/pyphen/__init__.py index 02ec6de..8ab3153 100755 --- a/pyphen/__init__.py +++ b/pyphen/__init__.py @@ -11,7 +11,7 @@ from importlib import resources from pathlib import Path -VERSION = __version__ = '0.17.1' +VERSION = __version__ = '0.17.2' __all__ = ('LANGUAGES', 'Pyphen', 'language_fallback')