From 8babdcfa88af501410200dd52fcdd06adf9c7394 Mon Sep 17 00:00:00 2001 From: Steve Cliff Date: Tue, 7 Jul 2026 14:29:09 +0100 Subject: [PATCH] chore(release): default installer to v0.7.0 Co-Authored-By: Claude Fable 5 --- skills/emcli/AGENTIC-MANUAL.md | 2 +- skills/emcli/SKILL.md | 2 +- skills/emcli/scripts/install.sh | 6 +++--- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/skills/emcli/AGENTIC-MANUAL.md b/skills/emcli/AGENTIC-MANUAL.md index 806d62b..b45f724 100644 --- a/skills/emcli/AGENTIC-MANUAL.md +++ b/skills/emcli/AGENTIC-MANUAL.md @@ -54,7 +54,7 @@ checksum, makes it executable in `~/.local/bin` (ensure that's on your PATH), an | Variable | Default | Purpose | |---|---|---| -| `EMCLI_VERSION` | `v0.6.0` | Release tag to fetch | +| `EMCLI_VERSION` | `v0.7.0` | Release tag to fetch | | `EMCLI_BASE_URL` | `https://gitea.dcglab.co.uk/steve/emcli` | Repo base URL | | `EMCLI_INSTALL_DIR` | `$HOME/.local/bin` | Install location | diff --git a/skills/emcli/SKILL.md b/skills/emcli/SKILL.md index 026c9c2..2e4926c 100644 --- a/skills/emcli/SKILL.md +++ b/skills/emcli/SKILL.md @@ -4,7 +4,7 @@ description: Read and send email through emcli, a guard-railed CLI gateway that compatibility: Requires the emcli binary (run scripts/install.sh to fetch it; needs curl or wget and a Linux/macOS/Windows shell) and the EMCLI_KEY environment variable, which the orchestrator provides. Needs network access to the configured mail server. metadata: author: steve - version: "0.6.0" + version: "0.7.0" homepage: "https://gitea.dcglab.co.uk/steve/emcli" --- diff --git a/skills/emcli/scripts/install.sh b/skills/emcli/scripts/install.sh index eb82057..4b57102 100755 --- a/skills/emcli/scripts/install.sh +++ b/skills/emcli/scripts/install.sh @@ -7,17 +7,17 @@ # bash install.sh # # Environment overrides: -# EMCLI_VERSION release tag to fetch (default: v0.6.0) +# EMCLI_VERSION release tag to fetch (default: v0.7.0) # EMCLI_BASE_URL repo base URL (default: https://gitea.dcglab.co.uk/steve/emcli) # EMCLI_INSTALL_DIR where to put the binary (default: $HOME/.local/bin) # # Release assets follow this naming scheme: -# emcli___[.exe] e.g. emcli_0.6.0_linux_amd64 +# emcli___[.exe] e.g. emcli_0.7.0_linux_amd64 # checksums.txt (sha256, one " " line per asset) set -euo pipefail -VERSION="${EMCLI_VERSION:-v0.6.0}" +VERSION="${EMCLI_VERSION:-v0.7.0}" BASE_URL="${EMCLI_BASE_URL:-https://gitea.dcglab.co.uk/steve/emcli}" INSTALL_DIR="${EMCLI_INSTALL_DIR:-$HOME/.local/bin}"