Skip to content

Commit

Permalink
🔖 release/v2.3.1
Browse files Browse the repository at this point in the history
# 2.3.1

* [FIX] fix conversion of SQLite `NUMERIC` data type with precision and scale to MySQL `DECIMAL` with precision and
  scale
  • Loading branch information
techouse committed Aug 28, 2024
1 parent cd08aa4 commit 89009d4
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# 2.3.1

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

# 2.3.0

* [FEAT] add MySQL 8.4 and MariaDB 11.4 support
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.0"
__version__ = "2.3.1"

from .transporter import SQLite3toMySQL

0 comments on commit 89009d4

Please sign in to comment.