Skip to content

Commit b997e0f

Browse files
committed
🔖 release v2.5.5
# 2.5.5 * [FIX] removed the Hatch `sources = ["src"]` rewrite so `sdists` now keep the `src/mysql_to_sqlite3` tree, letting wheels built from the sdist include the actual package
1 parent d8601c8 commit b997e0f

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
# 2.5.5
2+
3+
* [FIX] removed the Hatch `sources = ["src"]` rewrite so `sdists` now keep the `src/mysql_to_sqlite3` tree, letting
4+
wheels built from the sdist include the actual package
5+
16
# 2.5.4
27

38
* [FIX] enhance handling of MySQL string literals and default values

pyproject.toml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -91,9 +91,6 @@ dev = [
9191
[tool.hatch.version]
9292
path = "src/mysql_to_sqlite3/__init__.py"
9393

94-
[tool.hatch.build]
95-
sources = ["src"]
96-
9794
[tool.hatch.build.targets.sdist]
9895
include = [
9996
"src",
@@ -172,4 +169,4 @@ warn_unused_configs = true
172169

173170
[[tool.mypy.overrides]]
174171
module = "pytimeparse2.*,factory.*,docker.*"
175-
ignore_missing_imports = true
172+
ignore_missing_imports = true

src/mysql_to_sqlite3/__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 MySQL to SQLite 3."""
22

3-
__version__ = "2.5.4"
3+
__version__ = "2.5.5"
44

55
from .transporter import MySQLtoSQLite

0 commit comments

Comments
 (0)