prepare for version 0.12.0
This commit is contained in:
parent
c125731251
commit
1a38a9c7a2
|
@ -1,4 +1,4 @@
|
|||
## (Unreleased)
|
||||
## 0.12.0 (November 15, 2016)
|
||||
|
||||
FEATURES:
|
||||
* **New builder:** "cloudstack" Can create new templates for use with
|
||||
|
|
|
@ -9,12 +9,12 @@ import (
|
|||
var GitCommit string
|
||||
|
||||
// The main version number that is being run at the moment.
|
||||
const Version = "0.11.1"
|
||||
const Version = "0.12.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
|
||||
|
|
|
@ -2,6 +2,6 @@ set :base_url, "https://www.packer.io/"
|
|||
|
||||
activate :hashicorp do |h|
|
||||
h.name = "packer"
|
||||
h.version = "0.11.0"
|
||||
h.version = "0.12.0"
|
||||
h.github_slug = "mitchellh/packer"
|
||||
end
|
||||
|
|
Loading…
Reference in New Issue