From 75bca3fa52ce10c5ba9b6bf7ef8a7d458cc32a04 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Klemen=20Tu=C5=A1ar?= Date: Tue, 30 Jul 2024 21:03:23 +0100 Subject: [PATCH] :bookmark: release/v2.3.0 # 2.3.0 * [FEAT] add MySQL 8.4 and MariaDB 11.4 support --- CHANGELOG.md | 4 ++++ src/mysql_to_sqlite3/__init__.py | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) 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