From 92945dcbb9d26a5bc8a454d73242a4c56130637c Mon Sep 17 00:00:00 2001 From: James Date: Tue, 24 Feb 2026 02:14:51 -0500 Subject: [PATCH 1/2] chore(release): Bump version to 0.6.1 - Update version in pyproject.toml from 0.6.0 to 0.6.1 - Update __version__ in src/tablesleuth/__init__.py to 0.6.1 - Regenerate web/index.html with latest build artifacts - Update uv.lock with dependency changes --- pyproject.toml | 2 +- src/tablesleuth/__init__.py | 2 +- src/tablesleuth/web/index.html | 2 +- uv.lock | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 4be7d24..7037f62 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "tablesleuth" -version = "0.6.0" +version = "0.6.1" description = "TableSleuth - a Textual TUI for Open Table Format forensics (Iceberg, Delta Lake) with data profiling." readme = "README.md" requires-python = ">=3.13,<3.15" diff --git a/src/tablesleuth/__init__.py b/src/tablesleuth/__init__.py index f503ce3..fde87e7 100644 --- a/src/tablesleuth/__init__.py +++ b/src/tablesleuth/__init__.py @@ -1,4 +1,4 @@ """TableSleuth - open table format forensics.""" __all__ = ["__version__"] -__version__ = "0.6.0" +__version__ = "0.6.1" diff --git a/src/tablesleuth/web/index.html b/src/tablesleuth/web/index.html index 7d594a2..bc9ad2c 100644 --- a/src/tablesleuth/web/index.html +++ b/src/tablesleuth/web/index.html @@ -1 +1 @@ -TableSleuth
\ No newline at end of file +TableSleuth
diff --git a/uv.lock b/uv.lock index e49cfa8..9fa0a99 100644 --- a/uv.lock +++ b/uv.lock @@ -2108,7 +2108,7 @@ wheels = [ [[package]] name = "tablesleuth" -version = "0.6.0" +version = "0.6.1" source = { editable = "." } dependencies = [ { name = "adbc-driver-flightsql" }, From 9f4cf4646b7c8b3cd8a6365a676e9ffba2b3e40b Mon Sep 17 00:00:00 2001 From: James Date: Tue, 24 Feb 2026 02:23:13 -0500 Subject: [PATCH 2/2] test(api): Update health check version assertion to 0.6.1 - Update version assertion in test_health to match current release version - Ensures health endpoint test reflects latest version bump --- tests/api/test_main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/api/test_main.py b/tests/api/test_main.py index 149e8d3..d1973c0 100644 --- a/tests/api/test_main.py +++ b/tests/api/test_main.py @@ -19,7 +19,7 @@ def test_health() -> None: data = response.json() assert data["status"] == "ok" assert "version" in data - assert data["version"] == "0.6.0" + assert data["version"] == "0.6.1" def test_openapi_schema() -> None: