Skip to content

Commit

Permalink
replace deprecated function and prep for next release
Browse files Browse the repository at this point in the history
  • Loading branch information
ethanmdavidson committed Jun 30, 2024
1 parent 44e95e6 commit a5b9f15
Showing 1 changed file with 2 additions and 7 deletions.
9 changes: 2 additions & 7 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,11 @@ import (

var (
// Version is the main version number that is being run at the moment.
Version = "0.6.2"

// VersionPrerelease is 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.
VersionPrerelease = ""
Version = "0.6.3"

// PluginVersion is used by the plugin set to allow Packer to recognize
// what version this plugin is.
PluginVersion = version.InitializePluginVersion(Version, VersionPrerelease)
PluginVersion = version.NewRawVersion(Version)
)

func main() {
Expand Down

0 comments on commit a5b9f15

Please sign in to comment.