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 ``` ---