From a74cae4c8ed36016138de21595928b6483c6ec12 Mon Sep 17 00:00:00 2001 From: Guillaume Ayoub Date: Tue, 30 Jul 2024 13:41:03 +0200 Subject: [PATCH] Version 0.16.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 ae2490f..8b7245c 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -2,6 +2,15 @@ Changelog ========= +Version 0.16.0 +-------------- + +Released on 2024-07-30. + +* Close file when reading encoding +* Update dictionary repository + + Version 0.15.0 -------------- diff --git a/pyphen/__init__.py b/pyphen/__init__.py index 64001ea..bf76809 100755 --- a/pyphen/__init__.py +++ b/pyphen/__init__.py @@ -11,7 +11,7 @@ from importlib import resources from pathlib import Path -VERSION = __version__ = '0.15.0' +VERSION = __version__ = '0.16.0' __all__ = ('Pyphen', 'LANGUAGES', 'language_fallback')