From 4472200e17c5b799026366efc29805e310326ab3 Mon Sep 17 00:00:00 2001 From: sean Date: Thu, 5 Oct 2023 23:35:00 +0900 Subject: [PATCH] release 1.0.2 --- CHANGELOG | 4 ++++ docs/conf.py | 4 ++-- setup.py | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index cfecf3d9..99b6cf37 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -228,3 +228,7 @@ 1.0.1 05/10/2023 * add util module + +1.0.2 05/10/2023 +* Delete charset_list.csv and add directly in CHARSET.py + diff --git a/docs/conf.py b/docs/conf.py index 75963343..52956328 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -47,9 +47,9 @@ # built documents. # # The short X.Y version. -version = "1.0.1" +version = "1.0.2" # The full version, including alpha/beta/rc tags. -release = "1.0.1" +release = "1.0.2" # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/setup.py b/setup.py index 4b799ad8..c054591a 100644 --- a/setup.py +++ b/setup.py @@ -28,7 +28,7 @@ def run(self): unittest.main(tests, argv=sys.argv[:1]) -version = "1.0.1" +version = "1.0.2" this_directory = Path(__file__).parent long_description = (this_directory / "README.md").read_text()