From 897779b9254bc9c26abfeaffa1c545f59fbee5d3 Mon Sep 17 00:00:00 2001 From: claude-bot-andresmgsl Date: Fri, 24 Jul 2026 23:57:16 +0000 Subject: [PATCH] docs: quick-start fence names the development channel and carries the release command below it MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The first README fence becomes two labelled, copyable commands — the RIG_REF=main development command first (byte-identical to before, so the #89 guard at test/cli.sh:514 still passes) and the bare latest-release command below it, each preceded by a comment line naming its channel. Refs #149 Co-Authored-By: Claude Fable 5 --- README.md | 3 +++ changelog.d/149.md | 3 +++ 2 files changed, 6 insertions(+) create mode 100644 changelog.d/149.md diff --git a/README.md b/README.md index 2247c6a..b13d346 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,10 @@ takes arguments, does its work, and stores no credential, ever. ## Install ```sh +# the development tree this README documents: curl -fsSL https://raw.githubusercontent.com/heavy-duty/rig/main/install.sh | RIG_REF=main bash +# the latest release: +curl -fsSL https://raw.githubusercontent.com/heavy-duty/rig/main/install.sh | bash ``` This README tracks `main`, so the quick start installs that same development diff --git a/changelog.d/149.md b/changelog.d/149.md new file mode 100644 index 0000000..f11b5ea --- /dev/null +++ b/changelog.d/149.md @@ -0,0 +1,3 @@ +### Fixed + +- The quick-start fence names its channel and carries the release command beside it (#149)