prepare for 1.1.0

This commit is contained in:
Matthew Hooker 2017-09-12 15:06:54 -07:00
parent c4aeb0558b
commit 40d9c65106
No known key found for this signature in database
GPG Key ID: 7B5F933D9CE8C6A1
2 changed files with 5 additions and 5 deletions

View File

@ -14,7 +14,7 @@ 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

View File

@ -2,7 +2,7 @@ set :base_url, "https://www.packer.io/"
activate :hashicorp do |h|
h.name = "packer"
h.version = "1.0.4"
h.version = "1.1.0"
h.github_slug = "hashicorp/packer"
h.website_root = "website"
end
@ -27,8 +27,8 @@ helpers do
return "#{page.data.page_title} - Packer by HashiCorp"
end
"Packer by HashiCorp"
end
"Packer by HashiCorp"
end
# Get the description for the page
#
@ -81,7 +81,7 @@ helpers do
def body_classes_for(page)
classes = []
if !(layout = page.data.layout).blank?
if !(page.data.layout).blank?
classes << "layout-#{page.data.layout}"
end