Skip to content

Commit a7dd669

Browse files
committed
Bump for release
1 parent ce0b6c0 commit a7dd669

File tree

6 files changed

+18
-15
lines changed

6 files changed

+18
-15
lines changed

CHANGELOG.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## 0.11.1 (Unreleased)
1+
## 0.11.1 (September 5th, 2018)
22

33
SECURITY:
44

@@ -9,7 +9,8 @@ SECURITY:
99
and weakening the security of the key. On most platforms this should never
1010
happen because reading from kernel random sources is non-blocking and always
1111
successful, but there may be platform-specific behavior that has not been
12-
accounted for.
12+
accounted for. (Vault has tests to check exactly this, and the tests have
13+
never seen nonce re-use.)
1314

1415
IMPROVEMENTS:
1516

terraform/aws/variables.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
//-------------------------------------------------------------------
44

55
variable "download-url" {
6-
default = "https://releases.hashicorp.com/vault/0.11.0/vault_0.11.0_linux_amd64.zip"
6+
default = "https://releases.hashicorp.com/vault/0.11.1/vault_0.11.1_linux_amd64.zip"
77
description = "URL to download Vault"
88
}
99

vendor/github.com/hashicorp/vault-plugin-secrets-gcp/plugin/secrets_access_token.go

+3-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/vendor.json

+9-9
Original file line numberDiff line numberDiff line change
@@ -1359,8 +1359,8 @@
13591359
{
13601360
"checksumSHA1": "xdrSQoX7B7Hr4iWm9T2+5wHVpHQ=",
13611361
"path": "github.com/hashicorp/vault-plugin-auth-alicloud/tools",
1362-
"revision": "90acf238c385792939aade0286fcb941d9899435",
1363-
"revisionTime": "2018-08-22T21:26:04Z"
1362+
"revision": "1a078292f70a4c9e366a13d3c725d105bd5be1af",
1363+
"revisionTime": "2018-09-04T20:26:51Z"
13641364
},
13651365
{
13661366
"checksumSHA1": "ojr0r/jmutGEhftDXiHthCCwpIA=",
@@ -1417,22 +1417,22 @@
14171417
"revisionTime": "2018-08-21T21:57:39Z"
14181418
},
14191419
{
1420-
"checksumSHA1": "zkmWfxanMFQXWQIAboXj/jqF12g=",
1420+
"checksumSHA1": "91ydauzZu3czIjeQM9IAgvy7B7o=",
14211421
"path": "github.com/hashicorp/vault-plugin-secrets-gcp/plugin",
1422-
"revision": "ba74744a1fcfcd9c5f3635571a0734e6a13ce349",
1423-
"revisionTime": "2018-08-17T20:56:55Z"
1422+
"revision": "e3f5ad9f075ab1b18fa665a64bdec5411a14a4bb",
1423+
"revisionTime": "2018-09-05T16:00:51Z"
14241424
},
14251425
{
14261426
"checksumSHA1": "zwKMP2eBB2fKeOXMf0afsbw1bS0=",
14271427
"path": "github.com/hashicorp/vault-plugin-secrets-gcp/plugin/iamutil",
1428-
"revision": "ba74744a1fcfcd9c5f3635571a0734e6a13ce349",
1429-
"revisionTime": "2018-08-17T20:56:55Z"
1428+
"revision": "e3f5ad9f075ab1b18fa665a64bdec5411a14a4bb",
1429+
"revisionTime": "2018-09-05T16:00:51Z"
14301430
},
14311431
{
14321432
"checksumSHA1": "81kYL49zTBoj1NYczxB2Xbr2d6Y=",
14331433
"path": "github.com/hashicorp/vault-plugin-secrets-gcp/plugin/util",
1434-
"revision": "ba74744a1fcfcd9c5f3635571a0734e6a13ce349",
1435-
"revisionTime": "2018-08-17T20:56:55Z"
1434+
"revision": "e3f5ad9f075ab1b18fa665a64bdec5411a14a4bb",
1435+
"revisionTime": "2018-09-05T16:00:51Z"
14361436
},
14371437
{
14381438
"checksumSHA1": "FkppDRdkWTF4Ry+olqZT8L0Stb8=",

version/version_base.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package version
22

33
func init() {
44
// The main version number that is being run at the moment.
5-
Version = "0.11.0"
5+
Version = "0.11.1"
66

77
// A pre-release marker for the version. If this is "" (empty string)
88
// then it means that it is a final release. Otherwise, this is a pre-release

website/config.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
activate :hashicorp do |h|
44
h.name = "vault"
5-
h.version = "0.11.0"
5+
h.version = "0.11.1"
66
h.github_slug = "hashicorp/vault"
77
h.website_root = "website"
88
end

0 commit comments

Comments
 (0)