From a91a1fb5b0fd5fc2e2c7972110b6f5dc58c7a25e Mon Sep 17 00:00:00 2001 From: sean Date: Thu, 7 Mar 2024 13:54:49 +0900 Subject: [PATCH] release 1.0.7 * Fix parsing of query field of RowsQueryEvent(#602) * fix log statement for BinLogStreamReader.fetchone(#608) --- CHANGELOG | 6 +++++- docs/conf.py | 2 +- setup.py | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 85924caf..229c3417 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -248,4 +248,8 @@ 1.0.6 09/01/2024 * Optimizing version check to happen once per run (#597) -* bug-fix-nonesources f string (#596) \ No newline at end of file +* bug-fix-nonesources f string (#596) + +1.0.7 07/03/2024 +* Fix parsing of query field of RowsQueryEvent(#602) +* fix log statement for BinLogStreamReader.fetchone(#608) \ No newline at end of file diff --git a/docs/conf.py b/docs/conf.py index 7563df9f..a0cbd7f3 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -47,7 +47,7 @@ # built documents. # # The short X.Y version. -version = "1.0.6" +version = "1.0.7" # The full version, including alpha/beta/rc tags. release = "1.0.6" diff --git a/setup.py b/setup.py index 8623ee62..1d14df3d 100644 --- a/setup.py +++ b/setup.py @@ -28,7 +28,7 @@ def run(self): unittest.main(tests, argv=sys.argv[:1]) -version = "1.0.6" +version = "1.0.7" this_directory = Path(__file__).parent long_description = (this_directory / "README.md").read_text()