File tree 3 files changed +10
-5
lines changed 3 files changed +10
-5
lines changed Original file line number Diff line number Diff line change 175
175
* Handle null json
176
176
177
177
0.31 12/03/2023
178
- * Fix parse error for query_events with MariaDB
178
+ * Fix parse error for query_events with MariaDB
179
+
180
+ 0.40 07/05/2023
181
+ * Drop support for Python 2.7
182
+ * Gtid: remove __cmp__ due to python2 support dropped.
183
+ * Mariadb 10.6.12: Mitigate corrupt binlog event bug
Original file line number Diff line number Diff line change @@ -44,7 +44,6 @@ Project status
44
44
45
45
The project is test with:
46
46
* MySQL 5.5, 5.6 and 5.7
47
- * Python >= 2.7
48
47
* Python 3.3, 3.4, 3.5 and 3.6 (3.2 is not supported)
49
48
* PyPy (really faster than the standard Python interpreter)
50
49
@@ -334,6 +333,7 @@ Other contributors:
334
333
* Samira El Aabidi: Add support for MariaDB GTID (https://github.com/Samira-El )
335
334
* Oliver Seemann: Handle large json, github actions (https://github.com/oseemann )
336
335
* Mahadir Ahmad: Handle null json payload (https://github.com/mahadirz )
336
+ * Axel Viala: Removal of Python 2.7 (https://github.com/darnuria )
337
337
338
338
Thanks to GetResponse for their support
339
339
Original file line number Diff line number Diff line change 41
41
42
42
# General information about the project.
43
43
project = u'Python MySQL Replication'
44
- copyright = u'2012-2021 , Julien Duponchelle'
44
+ copyright = u'2012-2023 , Julien Duponchelle'
45
45
46
46
# The version info for the project you're documenting, acts as replacement for
47
47
# |version| and |release|, also used in various other places throughout the
48
48
# built documents.
49
49
#
50
50
# The short X.Y version.
51
- version = '0.31 '
51
+ version = '0.40 '
52
52
# The full version, including alpha/beta/rc tags.
53
- release = '0.31 '
53
+ release = '0.40 '
54
54
55
55
# The language for content autogenerated by Sphinx. Refer to documentation
56
56
# for a list of supported languages.
You can’t perform that action at this time.
0 commit comments