diff --git a/CHANGELOG.md b/CHANGELOG.md index e7ba412..6e55a2f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +# 2.3.0 + +* [FEAT] add MySQL 8.4 and MariaDB 11.4 support + # 2.2.2 * [FIX] use `dateutil.parse` to parse SQLite dates diff --git a/src/mysql_to_sqlite3/__init__.py b/src/mysql_to_sqlite3/__init__.py index bae6bec..c9b2a01 100644 --- a/src/mysql_to_sqlite3/__init__.py +++ b/src/mysql_to_sqlite3/__init__.py @@ -1,5 +1,5 @@ """Utility to transfer data from MySQL to SQLite 3.""" -__version__ = "2.2.2" +__version__ = "2.3.0" from .transporter import MySQLtoSQLite