From eafb219fc64dc041146b688799c4dfefadabb92d Mon Sep 17 00:00:00 2001 From: Patel230 Date: Tue, 9 Jun 2026 18:41:17 +0530 Subject: [PATCH] Document 0.1.0 release pinning --- docs/DEPLOYMENT.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/DEPLOYMENT.md b/docs/DEPLOYMENT.md index 4429eb3b1..b4afffb49 100644 --- a/docs/DEPLOYMENT.md +++ b/docs/DEPLOYMENT.md @@ -75,10 +75,10 @@ Intensities: `tok.IntensityLite`, `tok.IntensityFull`, `tok.IntensityUltra`. go get github.com/GrayCodeAI/tok@latest # Specific version -go get github.com/GrayCodeAI/tok@v0.29.0 +go get github.com/GrayCodeAI/tok@v0.1.0 # Rollback to a prior version -go get github.com/GrayCodeAI/tok@v0.28.0 +go get github.com/GrayCodeAI/tok@v0.1.0 ``` `go.mod` records the chosen version; `go mod tidy` keeps it consistent. @@ -175,8 +175,8 @@ Releases are tagged Go module versions; consumers pull them with `go get`. ```bash # Tag the release -git tag -a v0.29.0 -m "Release v0.29.0" -git push origin v0.29.0 +git tag -a v0.1.0 -m "Release v0.1.0" +git push origin v0.1.0 ``` There is no binary to publish — once tagged, the module is available to any @@ -193,7 +193,7 @@ Upgrading and rolling back are ordinary Go module operations: go get github.com/GrayCodeAI/tok@latest && go mod tidy # Rollback -go get github.com/GrayCodeAI/tok@v0.28.0 && go mod tidy +go get github.com/GrayCodeAI/tok@v0.1.0 && go mod tidy ``` ---