From 740bf33518c069c2982c52304dc492368ca9ed58 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Klemen=20Tu=C5=A1ar?= Date: Mon, 1 Jan 2024 09:33:12 +0100 Subject: [PATCH] :bookmark: release 2.1.7 # 2.1.7 * [FIX] use more precise foreign key constraints --- CHANGELOG.md | 4 ++++ mysql_to_sqlite3/__init__.py | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f05cd13..a6dc590 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +# 2.1.7 + +* [FIX] use more precise foreign key constraints + # 2.1.6 * [FEAT] build both linux/amd64 and linux/arm64 Docker images diff --git a/mysql_to_sqlite3/__init__.py b/mysql_to_sqlite3/__init__.py index 7db28d6..8cc9d70 100644 --- a/mysql_to_sqlite3/__init__.py +++ b/mysql_to_sqlite3/__init__.py @@ -1,4 +1,4 @@ """Utility to transfer data from MySQL to SQLite 3.""" -__version__ = "2.1.6" +__version__ = "2.1.7" from .transporter import MySQLtoSQLite