From 96af2e8fdce7ed2d0d58109e443817bd4c6bdd30 Mon Sep 17 00:00:00 2001 From: Guillaume Ayoub Date: Mon, 27 Dec 2021 19:12:11 +0100 Subject: [PATCH] Version 0.12.0 --- docs/changelog.rst | 10 ++++++++++ pyphen/__init__.py | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/docs/changelog.rst b/docs/changelog.rst index b646287..461dd2f 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -2,6 +2,16 @@ Changelog ========= +Version 0.12.0 +-------------- + +Released on 2021-12-27. + +* Support Python 3.10, drop Python 3.6 support. +* Add documentation. +* Update Belarusian dictionary. + + Version 0.11.0 -------------- diff --git a/pyphen/__init__.py b/pyphen/__init__.py index c136e91..51f8426 100755 --- a/pyphen/__init__.py +++ b/pyphen/__init__.py @@ -10,7 +10,7 @@ import os import re -VERSION = __version__ = '0.11.0' +VERSION = __version__ = '0.12.0' __all__ = ('Pyphen', 'LANGUAGES', 'language_fallback')