We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3605446 commit 5a66a84Copy full SHA for 5a66a84
1 file changed
cmd/deviceparameter/deviceparameter.go
@@ -22,7 +22,7 @@ import (
22
)
23
24
const ApplicationVersionMajor = 0
25
-const ApplicationVersionMinor = 4
+const ApplicationVersionMinor = 5
26
const ApplicationVersionPatch = 0
27
28
var ApplicationBuildDate string
@@ -172,6 +172,12 @@ type Options struct {
172
173
func main() {
174
175
+ // Alpha version expiration deadline
176
+ if t, err := time.Parse(time.RFC3339, "2026-12-31T00:00:00Z"); err != nil || time.Now().Unix() > t.Unix() {
177
+ fmt.Printf("Internal error\n")
178
+ os.Exit(1)
179
+ }
180
+
181
var opts Options
182
opts.ShowVersion = func() {
183
if ApplicationBuildDate == "" {
0 commit comments