prep for 1.0.1 release

This commit is contained in:
Megan Marsh 2017-06-19 16:09:13 -07:00
parent e5bd85a308
commit 56a802f3e7
2 changed files with 3 additions and 3 deletions

View File

@ -9,12 +9,12 @@ import (
var GitCommit string
// The main version number that is being run at the moment.
const Version = "1.1.0"
const Version = "1.0.1"
// 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

View File

@ -2,7 +2,7 @@ set :base_url, "https://www.packer.io/"
activate :hashicorp do |h|
h.name = "packer"
h.version = "1.0.0"
h.version = "1.0.1"
h.github_slug = "hashicorp/packer"
h.website_root = "website"
end