From 8d851d92b0302833089724a427136f3546627ea7 Mon Sep 17 00:00:00 2001 From: Eddie A Tejeda <669988+eddietejeda@users.noreply.github.com> Date: Sat, 23 May 2026 12:28:03 -0700 Subject: [PATCH] chore: bump version to v0.3.0 Release highlights: - feat: fetch query results as Arrow IPC (replaces JSON row format) - feat: async query polling loop replaces exit-code-2 behaviour - feat: --database flag on hotdata query for managed databases - feat: databases show subcommand - feat: databases tables positional shorthand for tables list - feat: background update-available notice printed after command output - feat: hotdata update auto-installs/updates agent skills - feat: hotdata update executes brew upgrade for Homebrew installs - fix: remove dead AsyncResponse.status field (compiler warning) - fix: reorder polling loop (poll first, sleep last) - fix: 120s timeout on skills HTTP download client - fix: replace chained .unwrap() with .expect() in tables help path Co-Authored-By: Claude Sonnet 4.6 --- Cargo.lock | 2 +- Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 8fa723b..6a7b8ae 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1028,7 +1028,7 @@ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea" [[package]] name = "hotdata-cli" -version = "0.2.9" +version = "0.3.0" dependencies = [ "anstyle", "arrow", diff --git a/Cargo.toml b/Cargo.toml index 76422ef..be3377b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hotdata-cli" -version = "0.2.9" +version = "0.3.0" edition = "2024" repository = "https://github.com/hotdata-dev/hotdata-cli" description = "CLI tool for Hotdata.dev"