From f483a36de8107b61fa139459540e83795a70dd49 Mon Sep 17 00:00:00 2001 From: Greg Gauthier Date: Mon, 30 Mar 2026 19:07:40 +0100 Subject: [PATCH] docs: bump version to 0.3.6 in README installation instructions Updates the version references in bash and PowerShell scripts for consistency with the latest release. --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 19a462b..bc51a1a 100644 --- a/README.md +++ b/README.md @@ -19,13 +19,13 @@ Grokkit is a fast Go CLI integrating Grok AI with git workflows and general chat **Bash (Linux/macOS):** ```bash -export VERSION=0.3.5 +export VERSION=0.3.6 curl -fsSL https://repos.gmgauthier.com/gmgauthier/grokkit/releases/download/v${VERSION}/grokkit-install.sh | bash -s -- --verify ``` **PowerShell (Windows):** ```pwsh -$env:VERSION="0.3.5" +$env:VERSION="0.3.6" irm https://repos.gmgauthier.com/gmgauthier/grokkit/releases/download/v$env:VERSION/grokkit-install.ps1 | iex ``` @@ -40,7 +40,7 @@ Both installers feature: **Bash (Linux/macOS):** ```bash -export VERSION=0.3.5 +export VERSION=0.3.6 curl -fsSL https://repos.gmgauthier.com/gmgauthier/grokkit/releases/download/v${VERSION}/grokkit-install.sh -o grokkit-install.sh bash grokkit-install.sh --verify ``` @@ -48,7 +48,7 @@ bash grokkit-install.sh --verify **PowerShell (Windows):** ```pwsh -$env:VERSION="0.3.5" +$env:VERSION="0.3.6" irm https://repos.gmgauthier.com/gmgauthier/grokkit/releases/download/v$env:VERSION/grokkit-install.ps1 -OutFile grokkit-install.ps1 .\grokkit-install.ps1 -Verify ```