Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions docs/DEPLOYMENT.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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
Expand All @@ -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
```

---
Expand Down
Loading