From 3c3f0b3411f90deefe924acef300d880825a3b27 Mon Sep 17 00:00:00 2001 From: Guillaume Ayoub Date: Fri, 17 Mar 2023 17:19:42 +0100 Subject: [PATCH] Version 0.14.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 9d4fa79..1c9bd53 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -2,6 +2,15 @@ Changelog ========= +Version 0.14.0 +-------------- + +Released on 2023-03-17. + +* Store Path objects instead of strings in LANGUAGE. +* Use importlib.resources instead of deprecated pkg_resources. + + Version 0.13.2 -------------- diff --git a/pyphen/__init__.py b/pyphen/__init__.py index fd4c653..176137d 100755 --- a/pyphen/__init__.py +++ b/pyphen/__init__.py @@ -11,7 +11,7 @@ from importlib import resources from pathlib import Path -VERSION = __version__ = '0.13.2' +VERSION = __version__ = '0.14.0' __all__ = ('Pyphen', 'LANGUAGES', 'language_fallback')