Prep for 0.6.5 release

This commit is contained in:
Jeff Mitchell 2017-02-07 16:11:32 -05:00
parent e41f7fd52a
commit b1ad99ebba
4 changed files with 4 additions and 4 deletions

View File

@ -1,4 +1,4 @@
## 0.6.5 (Unreleased)
## 0.6.5 (February 7th, 2017)
FEATURES:

View File

@ -3,7 +3,7 @@
//-------------------------------------------------------------------
variable "download-url" {
default = "https://releases.hashicorp.com/vault/0.6.4/vault_0.6.4_linux_amd64.zip"
default = "https://releases.hashicorp.com/vault/0.6.5/vault_0.6.5_linux_amd64.zip"
description = "URL to download Vault"
}

View File

@ -4,7 +4,7 @@ package version
func init() {
// The main version number that is being run at the moment.
Version = "0.6.4"
Version = "0.6.5"
// 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

View File

@ -2,7 +2,7 @@ set :base_url, "https://www.vaultproject.io/"
activate :hashicorp do |h|
h.name = "vault"
h.version = "0.6.4"
h.version = "0.6.5"
h.github_slug = "hashicorp/vault"
h.website_root = "website"
end