Skip to content

Commit

Permalink
🔖 release v2.3.2
Browse files Browse the repository at this point in the history
# 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 password2
  • Loading branch information
techouse committed Oct 26, 2024
1 parent 58b5f91 commit 729a315
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
5 changes: 2 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/sqlite3_to_mysql/__init__.py
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 729a315

Please sign in to comment.