From 2c013796b4fb814485851b043023d4db285b1cfc Mon Sep 17 00:00:00 2001 From: Eddie A Tejeda <669988+eddietejeda@users.noreply.github.com> Date: Wed, 29 Apr 2026 12:59:35 -0700 Subject: [PATCH 1/2] chore: Release hotdata-cli version 0.2.0 --- CHANGELOG.md | 30 +++++++++++++++++++++++++++++- Cargo.lock | 2 +- Cargo.toml | 2 +- README.md | 2 +- skills/hotdata-geospatial/SKILL.md | 2 +- skills/hotdata/SKILL.md | 2 +- 6 files changed, 34 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5f2f759..3ae6015 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,36 @@ +## [0.2.0] - 2026-04-29 + +### ๐Ÿš€ Features + +- *(datasets)* Add update subcommand to rename label or table_name +- Data/dataset refresh + indexes auto-embedding + embedding providers (#67) +- *(skills)* Add optional geospatial agent skill +- *(skills)* Auto-update bundled agent skills after CLI upgrade + +### ๐Ÿ› Bug Fixes + +- *(datasets)* Match runtimedb response shape on update +- *(datasets)* Drop synthetic schema_name on update output +- *(datasets)* Restore eprintln for "Dataset updated" status line +- *(skills)* Complete partial installs and improve status output +- *(skills)* Show Installed: No when no skill store exists +- *(skills)* Stop repeat auto-downloads (parse SKILL.md, stale tarball guard) + +### ๐Ÿ’ผ Other + +- *(release)* Bump geospatial skill version on release + +### ๐Ÿšœ Refactor + +- *(skills)* Always auto-update skills when eligible (remove env opt-out) + +### ๐ŸŽจ Styling + +- *(datasets)* Drop redundant Stylize import in update path ## [0.1.14] - 2026-04-28 ### ๐Ÿš€ Features -- *(auth)* Add CLI auth session support (JWT access tokens, refresh, PKCE login) - *(indexes)* Workspace-wide list with filters and parallel fetch ### ๐Ÿ’ผ Other diff --git a/Cargo.lock b/Cargo.lock index be15d64..7d43ac1 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -732,7 +732,7 @@ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea" [[package]] name = "hotdata-cli" -version = "0.1.14" +version = "0.2.0" dependencies = [ "anstyle", "base64", diff --git a/Cargo.toml b/Cargo.toml index 7d93438..cda4221 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hotdata-cli" -version = "0.1.14" +version = "0.2.0" edition = "2024" repository = "https://github.com/hotdata-dev/hotdata-cli" description = "CLI tool for Hotdata.dev" diff --git a/README.md b/README.md index 82ee6d8..031bd3d 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@
Command line interface for Hotdata.

- version + version build coverage

diff --git a/skills/hotdata-geospatial/SKILL.md b/skills/hotdata-geospatial/SKILL.md index 9ce5239..8fa52d0 100644 --- a/skills/hotdata-geospatial/SKILL.md +++ b/skills/hotdata-geospatial/SKILL.md @@ -1,7 +1,7 @@ --- name: hotdata-geospatial description: Use this skill only when the user is working with geospatial data in Hotdata (PostGIS-style SQL like ST_* functions, geometry/WKB, bbox filtering, point-in-polygon, distance/area, lat/lon, spatial joins, โ€œgeospatialโ€, โ€œGISโ€, โ€œPostGISโ€). Do not load this skill for non-geospatial SQL or general Hotdata usage. -version: 0.1.14 +version: 0.2.0 --- # Hotdata Geospatial Skill diff --git a/skills/hotdata/SKILL.md b/skills/hotdata/SKILL.md index 626868a..e0a2dcc 100644 --- a/skills/hotdata/SKILL.md +++ b/skills/hotdata/SKILL.md @@ -1,7 +1,7 @@ --- name: hotdata description: Use this skill when the user wants to run hotdata CLI commands, query the Hotdata API, list workspaces, list connections, create connections, list tables, manage datasets, execute SQL queries, inspect query run history, search tables, manage indexes, manage sandboxes, manage workspace context and stored docs such as context:DATAMODEL via the context API (`hotdata context`), or interact with the hotdata service. Activate when the user says "run hotdata", "query hotdata", "list workspaces", "list connections", "create a connection", "list tables", "list datasets", "create a dataset", "upload a dataset", "execute a query", "search a table", "list indexes", "create an index", "list query runs", "list past queries", "query history", "list sandboxes", "create a sandbox", "run a sandbox", "workspace context", "pull context", "push context", "data model", "context:DATAMODEL", or asks you to use the hotdata CLI. -version: 0.1.14 +version: 0.2.0 --- # Hotdata CLI Skill From 9012b784911cc4ff603fa0f53d6a36fd24af5f27 Mon Sep 17 00:00:00 2001 From: Eddie A Tejeda <669988+eddietejeda@users.noreply.github.com> Date: Wed, 29 Apr 2026 13:46:43 -0700 Subject: [PATCH 2/2] docs(changelog): restore [0.1.14] auth entry dropped by git-cliff regen --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3ae6015..5a53830 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -31,6 +31,7 @@ ### ๐Ÿš€ Features +- *(auth)* Add CLI auth session support (JWT access tokens, refresh, PKCE login) - *(indexes)* Workspace-wide list with filters and parallel fetch ### ๐Ÿ’ผ Other