We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b64ced1 commit d545155Copy full SHA for d545155
cmd/hperf/main.go
@@ -33,9 +33,7 @@ import (
33
"github.com/minio/hperf/shared"
34
)
35
36
-const (
37
- VERSION = "4.0.8"
38
-)
+var version = "0.0.0-dev"
39
40
// Help template for mc
41
var mcHelpTemplate = `NAME:
@@ -189,7 +187,7 @@ func CreateApp() *cli.App {
189
187
app.Commands = Commands
190
188
app.Author = "MinIO, Inc."
191
app.Copyright = "(c) 2021-2024 MinIO, Inc."
192
- app.Version = VERSION
+ app.Version = version
193
app.Flags = baseFlags
194
app.CustomAppHelpTemplate = mcHelpTemplate
195
app.EnableBashCompletion = false
0 commit comments