From feb01d85d8ba46634d2595f17610efc0f61f3b1a Mon Sep 17 00:00:00 2001 From: Wannaphong Phatthiyaphaibun Date: Wed, 9 Feb 2022 13:33:11 +0700 Subject: [PATCH] PyThaiNLP v3.0.1 - Remove warning message in pythainlp.tag.thainer. Fixed #644 - Add PYTHAINLP_READ_MODE environment variable is config PyThaiNLP to read-only mode. Fixed #645 --- pythainlp/__init__.py | 2 +- setup.cfg | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pythainlp/__init__.py b/pythainlp/__init__.py index dfb9bd5cc..78f0fd879 100644 --- a/pythainlp/__init__.py +++ b/pythainlp/__init__.py @@ -1,5 +1,5 @@ # -*- coding: utf-8 -*- -__version__ = "3.0.0" +__version__ = "3.0.1" thai_consonants = "กขฃคฅฆงจฉชซฌญฎฏฐฑฒณดตถทธนบปผฝพฟภมยรลวศษสหฬอฮ" # 44 chars diff --git a/setup.cfg b/setup.cfg index d3bd97796..688e2ab45 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 3.0.0 +current_version = 3.0.1 commit = True tag = True parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\-(?P[a-z]+)(?P\d+))? diff --git a/setup.py b/setup.py index 47adb15e5..75a6ecba4 100644 --- a/setup.py +++ b/setup.py @@ -105,7 +105,7 @@ setup( name="pythainlp", - version="3.0.0", + version="3.0.1", description="Thai Natural Language Processing library", long_description=readme, long_description_content_type="text/markdown",