From bad1555919b34101c8bc0dcc24db9237e234e4ad Mon Sep 17 00:00:00 2001 From: Jeff Mitchell Date: Tue, 19 Sep 2017 10:54:01 -0400 Subject: [PATCH] Bump version --- CHANGELOG.md | 2 +- terraform/aws/variables.tf | 2 +- version/version_base.go | 2 +- website/config.rb | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 57e6f5180..9ce00fe82 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -## 0.8.3 (Unreleased) +## 0.8.3 (September 19th, 2017) CHANGES: diff --git a/terraform/aws/variables.tf b/terraform/aws/variables.tf index 2168058a4..cef400287 100644 --- a/terraform/aws/variables.tf +++ b/terraform/aws/variables.tf @@ -3,7 +3,7 @@ //------------------------------------------------------------------- variable "download-url" { - default = "https://releases.hashicorp.com/vault/0.8.2/vault_0.8.2_linux_amd64.zip" + default = "https://releases.hashicorp.com/vault/0.8.3/vault_0.8.3_linux_amd64.zip" description = "URL to download Vault" } diff --git a/version/version_base.go b/version/version_base.go index 0a8a94da8..07173e658 100644 --- a/version/version_base.go +++ b/version/version_base.go @@ -4,7 +4,7 @@ package version func init() { // The main version number that is being run at the moment. - Version = "0.8.2" + Version = "0.8.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 diff --git a/website/config.rb b/website/config.rb index e56e75608..a9617531d 100644 --- a/website/config.rb +++ b/website/config.rb @@ -2,7 +2,7 @@ set :base_url, "https://www.vaultproject.io/" activate :hashicorp do |h| h.name = "vault" - h.version = "0.8.2" + h.version = "0.8.3" h.github_slug = "hashicorp/vault" h.website_root = "website" end