Files
coder/tailnet/proto/version.go
Spike Curtis d6154c4310 chore: remove tailnet v1 API support (#14641)
Drops support for v1 of the tailnet API, which was the original coordination protocol where we only sent node updates, never marked them lost or disconnected.

v2 of the tailnet API went GA for CLI clients in Coder 2.8.0, so clients older than that would stop working.
2024-09-12 07:56:31 +04:00

13 lines
178 B
Go

package proto
import (
"github.com/coder/coder/v2/apiversion"
)
const (
CurrentMajor = 2
CurrentMinor = 2
)
var CurrentVersion = apiversion.New(CurrentMajor, CurrentMinor)