docs(readme): bump version to 0.3.9
All checks were successful
CI / Test (push) Successful in 35s
CI / Lint (push) Successful in 25s
CI / Build (push) Successful in 20s
Release / Create Release (push) Successful in 35s

Update version references in installation scripts for Bash and PowerShell in README.md.
This commit is contained in:
Gregory Gauthier 2026-03-31 11:40:13 +01:00
parent 99b9405298
commit 3a91a94b45

View File

@ -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.8
export VERSION=0.3.9
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.8"
$env:VERSION="0.3.9"
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.8
export VERSION=0.3.9
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.8"
$env:VERSION="0.3.9"
irm https://repos.gmgauthier.com/gmgauthier/grokkit/releases/download/v$env:VERSION/grokkit-install.ps1 -OutFile grokkit-install.ps1
.\grokkit-install.ps1 -Verify
```