From 9af779f27ebd76d6f38f1a1d26b1c3ce4616b65c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Klemen=20Tu=C5=A1ar?= Date: Sun, 12 May 2024 19:13:57 +0100 Subject: [PATCH] :bookmark: release v2.1.12 # 2.1.12 * [CHORE] update MySQL Connector/Python to 8.4.0 * [CHORE] add Sphinx documentation --- CHANGELOG.md | 5 +++++ pyproject.toml | 4 +++- src/mysql_to_sqlite3/__init__.py | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c7567c7..bd178af 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +# 2.1.12 + +* [CHORE] update MySQL Connector/Python to 8.4.0 +* [CHORE] add Sphinx documentation + # 2.1.11 * [CHORE] migrate package from flat layout to src layout diff --git a/pyproject.toml b/pyproject.toml index 0cfe3ec..5bba169 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -50,8 +50,10 @@ dependencies = [ dynamic = ["version"] [project.urls] -Changelog = "https://github.com/techouse/mysql-to-sqlite3/blob/master/CHANGELOG.md" +Homepage = "https://techouse.github.io/mysql-to-sqlite3/" +Documentation = "https://techouse.github.io/mysql-to-sqlite3/" Source = "https://github.com/techouse/mysql-to-sqlite3" +Changelog = "https://github.com/techouse/mysql-to-sqlite3/blob/master/CHANGELOG.md" Sponsor = "https://github.com/sponsors/techouse" PayPal = "https://paypal.me/ktusar" diff --git a/src/mysql_to_sqlite3/__init__.py b/src/mysql_to_sqlite3/__init__.py index 16900d4..8a2fcea 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.1.11" +__version__ = "2.1.12" from .transporter import MySQLtoSQLite