From aab0358aa788ba92c920721b289abf4cf063812d Mon Sep 17 00:00:00 2001 From: Nathan Coleman Date: Thu, 6 Jun 2024 12:19:43 -0400 Subject: [PATCH 1/2] Update changelog --- CHANGELOG.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index c15f932d4..1d5cf6980 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +# 0.38.1 (June 6, 2024) + +IMPROVEMENTS: +* Return expanded list for exportedServices instead of wildcard from configuration entry [[GH-1948](https://github.com/hashicorp/consul-template/pull/1948)] + +BUG FIXES: +* Return the correct value for exportedServices when called multiple times with different partitions [[GH-1949](https://github.com/hashicorp/consul-template/pull/1949)] + # 0.38.0 (June 3, 2024) NEW FEATURES: From 499428ee3e5ffefd2d5b063330c97e08e75d5d4e Mon Sep 17 00:00:00 2001 From: Nathan Coleman Date: Thu, 6 Jun 2024 12:21:01 -0400 Subject: [PATCH 2/2] Update version.go --- version/version.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/version/version.go b/version/version.go index 3616ac3a6..d75ba92b7 100644 --- a/version/version.go +++ b/version/version.go @@ -6,7 +6,7 @@ package version import "fmt" const ( - Version = "0.38.0" + Version = "0.38.1" VersionPrerelease = "" // "-dev", "-beta", "-rc1", etc. (include dash) )