From 5ee9448eebd4aba913f3053cbbc2a002b8621b70 Mon Sep 17 00:00:00 2001 From: sean Date: Sat, 4 Nov 2023 20:07:21 +0900 Subject: [PATCH] release 1.0.3 --- CHANGELOG | 6 ++++++ docs/conf.py | 4 ++-- setup.py | 2 +- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index e3b7c009..06020aee 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -231,3 +231,9 @@ 1.0.2 05/10/2023 * Delete charset_list.csv and add directly in CHARSET.py + +1.0.3 04/11/2023 +* Fix only last order column came when DML 5.7 user (#516) +* Fix update unknown variable (#574) +* Fix Test Add omitted charset setting in base.py (#565) +* feature Partial Update row event (#521) diff --git a/docs/conf.py b/docs/conf.py index 52956328..d5f131cb 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -47,9 +47,9 @@ # built documents. # # The short X.Y version. -version = "1.0.2" +version = "1.0.3" # The full version, including alpha/beta/rc tags. -release = "1.0.2" +release = "1.0.3" # 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 c054591a..3b689e49 100644 --- a/setup.py +++ b/setup.py @@ -28,7 +28,7 @@ def run(self): unittest.main(tests, argv=sys.argv[:1]) -version = "1.0.2" +version = "1.0.3" this_directory = Path(__file__).parent long_description = (this_directory / "README.md").read_text()