summaryrefslogtreecommitdiff
path: root/vendor/github.com/mitchellh/packer/version/version.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/mitchellh/packer/version/version.go')
-rw-r--r--vendor/github.com/mitchellh/packer/version/version.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/vendor/github.com/mitchellh/packer/version/version.go b/vendor/github.com/mitchellh/packer/version/version.go
index 83d206c8..770e0211 100644
--- a/vendor/github.com/mitchellh/packer/version/version.go
+++ b/vendor/github.com/mitchellh/packer/version/version.go
@@ -9,12 +9,12 @@ import (
var GitCommit string
// The main version number that is being run at the moment.
-const Version = "1.0.4"
+const Version = "1.1.0"
// 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.
-const VersionPrerelease = "dev"
+const VersionPrerelease = ""
func FormattedVersion() string {
var versionString bytes.Buffer