Skip to content
This repository has been archived by the owner on Jun 25, 2024. It is now read-only.

fix: remove prerelease versioning #1

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
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
4 changes: 2 additions & 2 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ import (

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

// 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 = "dev"
VersionPrerelease = ""

// PluginVersion is used by the plugin set to allow Packer to recognize
// what version this plugin is.
Expand Down
Loading