From c420b2c52653ac05f1e9dc2b7b77e6d91bbeeefb Mon Sep 17 00:00:00 2001 From: IoeCmcomc <53734763+IoeCmcomc@users.noreply.github.com> Date: Sat, 1 Jun 2024 15:28:41 +0700 Subject: [PATCH] release: bump version to 0.2.1 --- ctnx/__init__.py | 2 +- docs/source/conf.py | 2 +- pyproject.toml | 2 +- tests/test_ctnx.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/ctnx/__init__.py b/ctnx/__init__.py index 843d21e..5807006 100755 --- a/ctnx/__init__.py +++ b/ctnx/__init__.py @@ -4,7 +4,7 @@ in processing Vietnamese texts, such as removing diacritics, converting numbers to words, sorting strings, validations and more.""" -__version__ = '0.2.0' +__version__ = '0.2.1' from .sort import ViSortKey from .number import num_to_words diff --git a/docs/source/conf.py b/docs/source/conf.py index 3ff3f1f..7d31a3c 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -10,7 +10,7 @@ project = 'chiecthuyenngoaixa' copyright = '2022 – 2024, IoeCmcomc' author = 'IoeCmcomc' -release = '0.2.0' +release = '0.2.1' # -- General configuration --------------------------------------------------- # https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration diff --git a/pyproject.toml b/pyproject.toml index 652f881..442ebe5 100755 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "chiecthuyenngoaixa" -version = "0.2.0" +version = "0.2.1" description = "An utility library for processing Vietnamese texts" authors = ["IoeCmcomc <53734763+IoeCmcomc@users.noreply.github.com>"] license = "MIT" diff --git a/tests/test_ctnx.py b/tests/test_ctnx.py index b6147e6..3c7a60d 100755 --- a/tests/test_ctnx.py +++ b/tests/test_ctnx.py @@ -2,4 +2,4 @@ def test_version(): - assert __version__ == '0.2.0' + assert __version__ == '0.2.1'