diff --git a/CHANGELOG b/CHANGELOG index 42fe7035..efea287c 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -183,4 +183,7 @@ * Mariadb 10.6.12: Mitigate corrupt binlog event bug 0.41 03/06/2023 -* Zero-pad fixed-length binary fields \ No newline at end of file +* Zero-pad fixed-length binary fields + +0.42 25/06/2023 +* Add XAPrepareEvent, parse last_committed & sequence_number of GtidEvent \ No newline at end of file diff --git a/README.md b/README.md index 2b60876c..78cf85a1 100644 --- a/README.md +++ b/README.md @@ -335,6 +335,7 @@ Other contributors: Zero-pad fixed-length binary fields (https://github.com/oseemann) * Mahadir Ahmad: Handle null json payload (https://github.com/mahadirz) * Axel Viala: Removal of Python 2.7 (https://github.com/darnuria) +* Etern: Add XAPrepareEvent, parse last_committed & sequence_number of GtidEvent (https://github.com/etern) Thanks to GetResponse for their support diff --git a/docs/conf.py b/docs/conf.py index d8375472..15dedc3d 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -48,9 +48,9 @@ # built documents. # # The short X.Y version. -version = '0.41' +version = '0.42' # The full version, including alpha/beta/rc tags. -release = '0.41' +release = '0.42' # 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 7a8fc147..5736bddf 100644 --- a/setup.py +++ b/setup.py @@ -29,7 +29,7 @@ def run(self): unittest.main(tests, argv=sys.argv[:1]) -version = "0.41" +version = "0.42" this_directory = Path(__file__).parent long_description = (this_directory / "README.md").read_text()