diff --git a/CHANGELOG.md b/CHANGELOG.md index 38793ad..7a0ecb9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] + +## [0.2.1] - 2026-05-24 + +### Added + +- `execute_sql` accepts an optional `database` keyword argument. When provided, the database name is resolved to an ID and sent as the `X-Database-Id` header so SQL can reference managed database tables as `"default"."".""`. Behaviour is unchanged when `database` is omitted. + ## [0.2.0] - 2026-05-24 ### Changed diff --git a/pyproject.toml b/pyproject.toml index db85d11..9058ead 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "hotdata-runtime" -version = "0.2.0" +version = "0.2.1" description = "Workspace/session runtime primitives for Hotdata integrations" readme = "README.md" requires-python = ">=3.10" diff --git a/uv.lock b/uv.lock index 489a070..e4a1fdb 100644 --- a/uv.lock +++ b/uv.lock @@ -58,7 +58,7 @@ wheels = [ [[package]] name = "hotdata-runtime" -version = "0.2.0" +version = "0.2.1" source = { editable = "." } dependencies = [ { name = "hotdata" },