Skip to content

Commit a7ee8fd

Browse files
Release 0.41
1 parent ed4dd28 commit a7ee8fd

File tree

4 files changed

+10
-6
lines changed

4 files changed

+10
-6
lines changed

CHANGELOG

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,4 +180,7 @@
180180
0.40 07/05/2023
181181
* Drop support for Python 2.7
182182
* Gtid: remove __cmp__ due to python2 support dropped.
183-
* Mariadb 10.6.12: Mitigate corrupt binlog event bug
183+
* Mariadb 10.6.12: Mitigate corrupt binlog event bug
184+
185+
0.41 03/06/2023
186+
* Zero-pad fixed-length binary fields

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -331,15 +331,16 @@ Other contributors:
331331
* Dongwook Chan: Support for ZEROFILL, Correct timedelta value for negative MySQL TIME datatype, Fix parsing of row events for MySQL8 partitioned table, Parse status variables in query event, Parse status variables in query event , Fix parse errors with MariaDB (https://github.com/dongwook-chan)
332332
* Paul Vickers: Add support for specifying an end log_pos (https://github.com/paulvic)
333333
* Samira El Aabidi: Add support for MariaDB GTID (https://github.com/Samira-El)
334-
* Oliver Seemann: Handle large json, github actions (https://github.com/oseemann)
334+
* Oliver Seemann: Handle large json, github actions,
335+
Zero-pad fixed-length binary fields (https://github.com/oseemann)
335336
* Mahadir Ahmad: Handle null json payload (https://github.com/mahadirz)
336337
* Axel Viala: Removal of Python 2.7 (https://github.com/darnuria)
337338

338339
Thanks to GetResponse for their support
339340

340341
Licence
341342
=======
342-
Copyright 2012-2022 Julien Duponchelle
343+
Copyright 2012-2023 Julien Duponchelle
343344

344345
Licensed under the Apache License, Version 2.0 (the "License");
345346
you may not use this file except in compliance with the License.

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,9 @@
4848
# built documents.
4949
#
5050
# The short X.Y version.
51-
version = '0.40'
51+
version = '0.41'
5252
# The full version, including alpha/beta/rc tags.
53-
release = '0.40'
53+
release = '0.41'
5454

5555
# The language for content autogenerated by Sphinx. Refer to documentation
5656
# for a list of supported languages.

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ def run(self):
2828
unittest.main(tests, argv=sys.argv[:1])
2929

3030

31-
version = "0.40"
31+
version = "0.41"
3232

3333
setup(
3434
name="mysql-replication",

0 commit comments

Comments
 (0)