From 3111d811578b1c7f6c8af032a9d97234621e2b0a Mon Sep 17 00:00:00 2001 From: John Eikenberry Date: Mon, 3 Oct 2022 15:12:53 -0700 Subject: [PATCH] update changelog and version file for v0.13.1 --- CHANGELOG.md | 7 +++++++ version/version.go | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b0d1aecf..a897365a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ ## envconsul CHANGELOG +## v0.13.1 (Oct 03, 2022) + +BUG FIXES: +* Fix not passing through configuration setting properly to underlying consul-template config [[GH-312](https://github.com/hashicorp/envconsul/pull/312), [GH-310](https://github.com/hashicorp/envconsul/issues/310)] +* Fix issue with vault agent token file reading [[GH-314](https://github.com/hashicorp/envconsul/pull/314), [GH-275](https://github.com/hashicorp/envconsul/issues/275)] + + ## v0.13.0 (Jul 19, 2022) BUG FIXES: diff --git a/version/version.go b/version/version.go index 2d559ad1..4f4cec53 100644 --- a/version/version.go +++ b/version/version.go @@ -3,7 +3,7 @@ package version import "fmt" const ( - Version = "0.13.0" + Version = "0.13.1" VersionPrerelease = "" // "-dev", "-beta", "-rc1", etc. (include dash) )