prep for 1.2.0

This commit is contained in:
Matthew Hooker 2018-02-09 15:07:10 -08:00
parent 034e722650
commit 0093f48614
No known key found for this signature in database
GPG Key ID: 7B5F933D9CE8C6A1
3 changed files with 4 additions and 4 deletions

View File

@ -1,4 +1,4 @@
## (UNRELEASED) ## 1.2.0 (February 9, 2018)
### BACKWARDS INCOMPATIBILITIES: ### BACKWARDS INCOMPATIBILITIES:
* 3rd party plugins: We have moved internal dependencies, meaning your 3rd * 3rd party plugins: We have moved internal dependencies, meaning your 3rd

View File

@ -9,12 +9,12 @@ import (
var GitCommit string var GitCommit string
// The main version number that is being run at the moment. // The main version number that is being run at the moment.
const Version = "1.1.4" const Version = "1.2.0"
// A pre-release marker for the version. If this is "" (empty string) // 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 // then it means that it is a final release. Otherwise, this is a pre-release
// such as "dev" (in development), "beta", "rc1", etc. // such as "dev" (in development), "beta", "rc1", etc.
const VersionPrerelease = "dev" const VersionPrerelease = ""
func FormattedVersion() string { func FormattedVersion() string {
var versionString bytes.Buffer var versionString bytes.Buffer

View File

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