Skip to content

Commit a90483f

Browse files
committed
chore: Release hotdata-cli version 0.2.1
Bump crate and bundled skill metadata to 0.2.1, refresh README badge and CHANGELOG (documentation: align hotdata skill with CLI). Export ~/.cargo/bin on PATH in release.sh so git-cliff is found for the cargo-release hook.
1 parent ef7ed05 commit a90483f

6 files changed

Lines changed: 14 additions & 5 deletions

File tree

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## [0.2.1] - 2026-04-30
2+
3+
### 📚 Documentation
4+
5+
- *(skill)* Align hotdata skill with CLI behavior
16
## [0.2.0] - 2026-04-29
27

38
### 🚀 Features
@@ -19,6 +24,8 @@
1924
### 💼 Other
2025

2126
- *(release)* Bump geospatial skill version on release
27+
- *(deps)* Bump rustls-webpki to 0.103.13
28+
- Validate CHANGELOG sections match base branch on PRs
2229

2330
### 🚜 Refactor
2431

@@ -31,7 +38,6 @@
3138

3239
### 🚀 Features
3340

34-
- *(auth)* Add CLI auth session support (JWT access tokens, refresh, PKCE login)
3541
- *(indexes)* Workspace-wide list with filters and parallel fetch
3642

3743
### 💼 Other

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "hotdata-cli"
3-
version = "0.2.0"
3+
version = "0.2.1"
44
edition = "2024"
55
repository = "https://github.com/hotdata-dev/hotdata-cli"
66
description = "CLI tool for Hotdata.dev"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<br>
66
Command line interface for <a href="https://www.hotdata.dev">Hotdata</a>.
77
<br><br>
8-
<img src="https://img.shields.io/badge/version-0.2.0-blue" alt="version">
8+
<img src="https://img.shields.io/badge/version-0.2.1-blue" alt="version">
99
<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>
1010
<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>
1111
</p>

scripts/release.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,8 @@ case "$COMMAND" in
4242
# step 2: bump versions, commit, push branch
4343
echo ""
4444
echo "→ Running cargo release (no publish, no tag)..."
45+
# git-cliff (pre-release hook) is often installed via cargo install
46+
export PATH="${HOME}/.cargo/bin:${PATH}"
4547
cargo release --no-publish --no-tag --no-confirm --allow-branch="$BRANCH" --execute "$VERSION"
4648

4749
echo ""
@@ -79,6 +81,7 @@ case "$COMMAND" in
7981

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

8487
echo ""

skills/hotdata-geospatial/SKILL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
name: hotdata-geospatial
33
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.
4-
version: 0.2.0
4+
version: 0.2.1
55
---
66

77
# Hotdata Geospatial Skill

0 commit comments

Comments
 (0)