Skip to content

Commit bc89be0

Browse files
committed
🔖 release v2.5.8
# 2.5.8 * [CHORE] pin sqlglot to >=30.0.0,<31.0.0
1 parent 6e31d48 commit bc89be0

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# 2.5.8
2+
3+
* [CHORE] pin sqlglot to >=30.0.0,<31.0.0
4+
15
# 2.5.7
26

37
* [FIX] cast parsed SQL expressions to the correct type for type safety

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ dependencies = [
4848
"pytimeparse2",
4949
"python-dateutil>=2.9.0.post0",
5050
"simplejson>=3.19.1",
51-
"sqlglot>=27.27.0",
51+
"sqlglot>=30.0.0,<31.0.0",
5252
"tqdm>=4.65.0",
5353
"tabulate",
5454
"Unidecode>=1.3.6",

requirements_dev.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ python-dateutil>=2.9.0.post0
1313
types-python-dateutil
1414
simplejson>=3.19.1
1515
types-simplejson
16-
sqlglot>=27.27.0
16+
sqlglot>=30.0.0,<31.0.0
1717
sqlalchemy>=2.0.0
1818
sqlalchemy-utils
1919
types-sqlalchemy-utils

src/sqlite3_to_mysql/__init__.py

Lines changed: 1 addition & 1 deletion
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.5.7"
3+
__version__ = "2.5.8"
44

55
from .transporter import SQLite3toMySQL

0 commit comments

Comments
 (0)