Skip to content

Commit 729a315

Browse files
committed
🔖 release v2.3.2
# 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
1 parent 58b5f91 commit 729a315

File tree

3 files changed

+10
-4
lines changed

3 files changed

+10
-4
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
# 2.3.2
2+
3+
* [FIX] fix --mysql-insert-method
4+
* [FIX] modify the existing `check_mysql_json_support` and `check_mysql_fulltext_support` to improve detection of
5+
MariaDB versions
6+
* [FIX] fix connecting with empty MySQL password
7+
18
# 2.3.1
29

310
* [FIX] fix conversion of SQLite `NUMERIC` data type with precision and scale to MySQL `DECIMAL` with precision and

README.md

+2-3
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,6 @@ sqlite3mysql --help
3232
```
3333
Usage: sqlite3mysql [OPTIONS]
3434
35-
sqlite3mysql version 2.1.10 Copyright (c) 2018-2024 Klemen Tusar
36-
3735
Options:
3836
-f, --sqlite-file PATH SQLite3 database file [required]
3937
-t, --sqlite-tables TUPLE Transfer only these specific tables (space
@@ -103,7 +101,8 @@ docker run -it \
103101
This will mount your host current working directory (pwd) inside the Docker container as the current working directory.
104102
Any files Docker would write to the current working directory are written to the host directory where you did docker
105103
run. Note that you have to also use a
106-
[special hostname](https://docs.docker.com/desktop/networking/#use-cases-and-workarounds-for-all-platforms) `host.docker.internal`
104+
[special hostname](https://docs.docker.com/desktop/networking/#use-cases-and-workarounds-for-all-platforms)
105+
`host.docker.internal`
107106
to access your host machine from inside the Docker container.
108107

109108
#### Homebrew

src/sqlite3_to_mysql/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""Utility to transfer data from SQLite 3 to MySQL."""
22

3-
__version__ = "2.3.1"
3+
__version__ = "2.3.2"
44

55
from .transporter import SQLite3toMySQL

0 commit comments

Comments
 (0)