Skip to content

Commit 1ea920d

Browse files
authored
Merge pull request #60 from hotdata-dev/release/0.1.13
chore: Release hotdata-cli version 0.1.13
2 parents 5dfe37e + fd01c7c commit 1ea920d

6 files changed

Lines changed: 29 additions & 6 deletions

File tree

CHANGELOG.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
1+
## [0.1.13] - 2026-04-24
2+
3+
### 🚀 Features
4+
5+
- *(auth)* Add login subcommand mirroring bare auth
6+
7+
### 🐛 Bug Fixes
8+
9+
- *(context)* Strip .md suffix using correct byte length
10+
- *(context)* Avoid UTF-8 panic when probing .md suffix
11+
12+
### 💼 Other
13+
14+
- *(release)* Pass --no-confirm to cargo release
15+
16+
### 📚 Documentation
17+
18+
- *(skill)* List before show; avoid blind context show DATAMODEL
19+
- *(skill)* Context:<STEM> notation and analysis vs DATAMODEL
120
## [0.1.12] - 2026-04-24
221

322
### 🚀 Features
@@ -8,6 +27,10 @@
827

928
- *(context)* Fail-fast pull when target exists; expand stem tests
1029

30+
### 💼 Other
31+
32+
- *(release)* Regenerate changelog with git-cliff
33+
1134
### 🚜 Refactor
1235

1336
- *(context)* Clearer fetch_context exhaustiveness; drop no-op mkdir

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.1.12"
3+
version = "0.1.13"
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.1.12-blue" alt="version">
8+
<img src="https://img.shields.io/badge/version-0.1.13-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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ case "$COMMAND" in
4242
# step 2: bump versions, commit, push branch
4343
echo ""
4444
echo "→ Running cargo release (no publish, no tag)..."
45-
cargo release --no-publish --no-tag --allow-branch="$BRANCH" --execute "$VERSION"
45+
cargo release --no-publish --no-tag --no-confirm --allow-branch="$BRANCH" --execute "$VERSION"
4646

4747
echo ""
4848
echo "→ Opening pull request..."
@@ -79,7 +79,7 @@ case "$COMMAND" in
7979

8080
echo ""
8181
echo "→ Running cargo release (tagging release)..."
82-
cargo release --execute
82+
cargo release --no-confirm --execute
8383

8484
echo ""
8585
echo "✓ Release complete. Tag pushed and dist workflow triggered."

skills/hotdata/SKILL.md

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

77
# Hotdata CLI Skill

0 commit comments

Comments
 (0)