We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c1006e1 commit f4a30d2Copy full SHA for f4a30d2
1 file changed
version/version.go
@@ -9,6 +9,7 @@ import (
9
"fmt"
10
11
"github.com/hashicorp/go-version"
12
+ "github.com/hashicorp/packer-plugin-sdk/version"
13
)
14
15
// The git commit that was compiled. This will be filled in by the compiler.
@@ -20,7 +21,7 @@ var Version = "0.6.6"
20
21
// A pre-release marker for the version. If this is "" (empty string)
22
// then it means that it is a final release. Otherwise, this is a pre-release
23
// such as "dev" (in development), "beta", "rc1", etc.
-var VersionPrerelease = "dev"
24
+var VersionPrerelease = ""
25
26
// The metadata for the version, this is optional information to add around
27
// a particular release.
0 commit comments