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()