Skip to content

Commit

Permalink
Release 0.30
Browse files Browse the repository at this point in the history
  • Loading branch information
julien-duponchelle committed Apr 28, 2022
1 parent f222cc8 commit 6cd62f6
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -168,4 +168,8 @@
* Add support for MariaDB GTID

0.29 08/04/2022
* Skip db name parsing if mts_accessed_dbs == 254
* Skip db name parsing if mts_accessed_dbs == 254

0.30 28/04/2022
* Fix decoding large json arrays
* Handle null json
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -332,6 +332,8 @@ Other contributors:
* 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 (https://github.com/dongwook-chan)
* Paul Vickers: Add support for specifying an end log_pos (https://github.com/paulvic)
* Samira El Aabidi: Add support for MariaDB GTID (https://github.com/Samira-El)
* Oliver Seemann: Handle large json, github actions (https://github.com/oseemann)
* Mahadir Ahmad: Handle null json payload (https://github.com/mahadirz)

Thanks to GetResponse for their support

Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,9 @@
# built documents.
#
# The short X.Y version.
version = '0.29'
version = '0.30'
# The full version, including alpha/beta/rc tags.
release = '0.29'
release = '0.30'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def run(self):
unittest.main(tests, argv=sys.argv[:1])


version = "0.29"
version = "0.30"

setup(
name="mysql-replication",
Expand Down

0 comments on commit 6cd62f6

Please sign in to comment.