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

TableSleuth

Forensic analysis for open table formats — Parquet, Apache Iceberg, Delta Lake.

\ No newline at end of file +TableSleuth

TableSleuth

Forensic analysis for open table formats — Parquet, Apache Iceberg, Delta Lake.

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: 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" },