diff --git a/CHANGELOG b/CHANGELOG index 229c3417..7f8866b6 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -252,4 +252,7 @@ 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 +* fix log statement for BinLogStreamReader.fetchone(#608) + +1.0.8 31/03/2024 +* Fix parsing replications events (#614) diff --git a/docs/conf.py b/docs/conf.py index a0cbd7f3..df74fbe0 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -47,9 +47,9 @@ # built documents. # # The short X.Y version. -version = "1.0.7" +version = "1.0" # The full version, including alpha/beta/rc tags. -release = "1.0.6" +release = "1.0.8" # 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 1d14df3d..8e13d910 100644 --- a/setup.py +++ b/setup.py @@ -28,7 +28,7 @@ def run(self): unittest.main(tests, argv=sys.argv[:1]) -version = "1.0.7" +version = "1.0.8" this_directory = Path(__file__).parent long_description = (this_directory / "README.md").read_text()