From 746b7cbf0f257e9fea3896aae9510769da4f7b74 Mon Sep 17 00:00:00 2001 From: Wilken Rivera Date: Wed, 12 Feb 2020 13:35:38 -0500 Subject: [PATCH] cut release 1.5.2 --- CHANGELOG.md | 4 ++-- version/version.go | 2 +- website/config.rb | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4862313de44..4dfbed6f56d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,9 +1,9 @@ -## 1.5.2 (Upcoming) +## 1.5.2 (February 12, 2020) **New Builder** The vsphere-iso builder, previously maintained by JetBrains, has been merged with the Packer core. It will be officially supported by the Packer team at HashiCorp moving forward. [GH-8480] -**HCL2 variables & functions** HCL2 configurations can now use `variable`, +**HCL2 variables & functions** HCL2 configurations can now use `variable`, `variables`, `locals`, and functions [GH-8588]. ### IMPROVEMENTS: diff --git a/version/version.go b/version/version.go index f83d803327d..409e93f56b0 100644 --- a/version/version.go +++ b/version/version.go @@ -14,7 +14,7 @@ const Version = "1.5.2" // 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 diff --git a/website/config.rb b/website/config.rb index de2b97c4e46..6e5ad4ef8c1 100644 --- a/website/config.rb +++ b/website/config.rb @@ -2,7 +2,7 @@ activate :hashicorp do |h| h.name = "packer" - h.version = "1.5.1" + h.version = "1.5.2" h.github_slug = "hashicorp/packer" h.website_root = "website" end