Skip to content
Merged
Changes from 1 commit
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
3 changes: 2 additions & 1 deletion version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ import (
"fmt"

"github.com/hashicorp/go-version"
"github.com/hashicorp/packer-plugin-sdk/version"
)

// The git commit that was compiled. This will be filled in by the compiler.
Expand All @@ -20,7 +21,7 @@ var Version = "0.6.6"
// A pre-release marker for the version. If this is "" (empty string)
// then it means that it is a final release. Otherwise, this is a pre-release
// such as "dev" (in development), "beta", "rc1", etc.
var VersionPrerelease = "dev"
var VersionPrerelease = ""

// The metadata for the version, this is optional information to add around
// a particular release.
Expand Down
Loading