Skip to content

Commit

Permalink
Bump files for new version
Browse files Browse the repository at this point in the history
  • Loading branch information
jefferai committed Feb 20, 2018
1 parent eecb4ed commit d6366e5
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 5 deletions.
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,12 @@
## 0.9.4 (Unreleased)
## 0.9.4 (February 20th, 2018)

SECURITY:

* Role Tags used with the EC2 style of AWS auth were being improperly parsed;
as a result they were not being used to properly restrict values.
Implementations following our suggestion of using these as defense-in-depth
rather than the only source of restriction should not have significant
impact.

FEATURES:

Expand Down
2 changes: 1 addition & 1 deletion scripts/cross/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ RUN apt-get update -y && apt-get install --no-install-recommends -y -q \
git mercurial bzr \
&& rm -rf /var/lib/apt/lists/*

ENV GOVERSION 1.9.3
ENV GOVERSION 1.10
RUN mkdir /goroot && mkdir /gopath
RUN curl https://storage.googleapis.com/golang/go${GOVERSION}.linux-amd64.tar.gz \
| tar xvzf - -C /goroot --strip-components=1
Expand Down
2 changes: 1 addition & 1 deletion terraform/aws/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
//-------------------------------------------------------------------

variable "download-url" {
default = "https://releases.hashicorp.com/vault/0.9.3/vault_0.9.3_linux_amd64.zip"
default = "https://releases.hashicorp.com/vault/0.9.4/vault_0.9.4_linux_amd64.zip"
description = "URL to download Vault"
}

Expand Down
2 changes: 1 addition & 1 deletion version/version_base.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package version

func init() {
// The main version number that is being run at the moment.
Version = "0.9.3"
Version = "0.9.4"

// 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
Expand Down
2 changes: 1 addition & 1 deletion website/config.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

activate :hashicorp do |h|
h.name = "vault"
h.version = "0.9.3"
h.version = "0.9.4"
h.github_slug = "hashicorp/vault"
h.website_root = "website"
end
Expand Down

0 comments on commit d6366e5

Please sign in to comment.