prepare packer 0.12.3

This commit is contained in:
Matthew Hooker 2017-03-01 16:58:30 -08:00
parent 1adfe2f679
commit e4c27101e4
No known key found for this signature in database
GPG Key ID: 7B5F933D9CE8C6A1
3 changed files with 4 additions and 2 deletions

View File

@ -1,5 +1,7 @@
## (Unreleased)
## 0.12.3 (March 1, 2017)
### FEATURES:
* **New builder:** `ebs-surrogate` for building AMIs from EBS volumes. [GH-4351]

View File

@ -14,7 +14,7 @@ const Version = "0.12.3"
// 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,6 +2,6 @@ set :base_url, "https://www.packer.io/"
activate :hashicorp do |h|
h.name = "packer"
h.version = "0.12.2"
h.version = "0.12.3"
h.github_slug = "mitchellh/packer"
end