diff --git a/CHANGELOG.md b/CHANGELOG.md index 8aaa8de..9baca78 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +# 2.3.2 + +* [FIX] fix --mysql-insert-method +* [FIX] modify the existing `check_mysql_json_support` and `check_mysql_fulltext_support` to improve detection of + MariaDB versions +* [FIX] fix connecting with empty MySQL password + # 2.3.1 * [FIX] fix conversion of SQLite `NUMERIC` data type with precision and scale to MySQL `DECIMAL` with precision and diff --git a/README.md b/README.md index 0ee34a2..4a414fb 100644 --- a/README.md +++ b/README.md @@ -32,8 +32,6 @@ sqlite3mysql --help ``` Usage: sqlite3mysql [OPTIONS] - sqlite3mysql version 2.1.10 Copyright (c) 2018-2024 Klemen Tusar - Options: -f, --sqlite-file PATH SQLite3 database file [required] -t, --sqlite-tables TUPLE Transfer only these specific tables (space @@ -103,7 +101,8 @@ docker run -it \ This will mount your host current working directory (pwd) inside the Docker container as the current working directory. Any files Docker would write to the current working directory are written to the host directory where you did docker run. Note that you have to also use a -[special hostname](https://docs.docker.com/desktop/networking/#use-cases-and-workarounds-for-all-platforms) `host.docker.internal` +[special hostname](https://docs.docker.com/desktop/networking/#use-cases-and-workarounds-for-all-platforms) +`host.docker.internal` to access your host machine from inside the Docker container. #### Homebrew diff --git a/src/sqlite3_to_mysql/__init__.py b/src/sqlite3_to_mysql/__init__.py index 096e763..641e0ad 100644 --- a/src/sqlite3_to_mysql/__init__.py +++ b/src/sqlite3_to_mysql/__init__.py @@ -1,5 +1,5 @@ """Utility to transfer data from SQLite 3 to MySQL.""" -__version__ = "2.3.1" +__version__ = "2.3.2" from .transporter import SQLite3toMySQL