From 7faee4e1b13f9512fed2f16cdf0e8c5e944c8d9c Mon Sep 17 00:00:00 2001 From: Davide Madrisan Date: Mon, 30 Sep 2019 20:59:43 +0200 Subject: [PATCH] Version 0.8.2 Signed-off-by: Davide Madrisan --- CHANGELOG.md | 13 +++++++++++++ version/version_base.go | 2 +- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d108216..3b559f9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,16 @@ +## 0.8.2 (September 30, 2019) + +BUG FIXES: + + * Fix the broken initialization of the Vault URL that made impossible to + setup the Vault address via the environment variable `VAULT_ADDR`. + +IMPROVEMENTS: + + * Update the documentation. + * Add a configuration file for + [CircleCI](https://circleci.com/gh/madrisan/hashicorp-vault-monitor). + ## 0.8.1 (September 12, 2019) IMPROVEMENTS: diff --git a/version/version_base.go b/version/version_base.go index 0994d9c..0a06fbd 100644 --- a/version/version_base.go +++ b/version/version_base.go @@ -1,6 +1,6 @@ package version func init() { - Version = "0.8.1" + Version = "0.8.2" VersionPrerelease = "" }