Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## [0.2.1] - 2026-04-30

### 📚 Documentation

- *(skill)* Align hotdata skill with CLI behavior

## [0.2.0] - 2026-04-29

### 🚀 Features
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "hotdata-cli"
version = "0.2.0"
version = "0.2.1"
edition = "2024"
repository = "https://github.com/hotdata-dev/hotdata-cli"
description = "CLI tool for Hotdata.dev"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<br>
Command line interface for <a href="https://www.hotdata.dev">Hotdata</a>.
<br><br>
<img src="https://img.shields.io/badge/version-0.2.0-blue" alt="version">
<img src="https://img.shields.io/badge/version-0.2.1-blue" alt="version">
<a href="https://github.com/hotdata-dev/hotdata-cli/actions/workflows/ci.yml"><img src="https://github.com/hotdata-dev/hotdata-cli/actions/workflows/ci.yml/badge.svg" alt="build"></a>
<a href="https://codecov.io/gh/hotdata-dev/hotdata-cli"><img src="https://codecov.io/gh/hotdata-dev/hotdata-cli/branch/main/graph/badge.svg" alt="coverage"></a>
</p>
Expand Down
3 changes: 3 additions & 0 deletions scripts/release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,8 @@ case "$COMMAND" in
# step 2: bump versions, commit, push branch
echo ""
echo "→ Running cargo release (no publish, no tag)..."
# git-cliff (pre-release hook) is often installed via cargo install
export PATH="${HOME}/.cargo/bin:${PATH}"
cargo release --no-publish --no-tag --no-confirm --allow-branch="$BRANCH" --execute "$VERSION"

echo ""
Expand Down Expand Up @@ -79,6 +81,7 @@ case "$COMMAND" in

echo ""
echo "→ Running cargo release (tagging release)..."
export PATH="${HOME}/.cargo/bin:${PATH}"
cargo release --no-confirm --execute

echo ""
Expand Down
2 changes: 1 addition & 1 deletion skills/hotdata-geospatial/SKILL.md
Original file line number Diff line number Diff line change
@@ -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.2.0
version: 0.2.1
---

# Hotdata Geospatial Skill
Expand Down
Loading