From ab86dd6e7f8a460ea1f068390005721ea9553be0 Mon Sep 17 00:00:00 2001 From: Nathan Coleman Date: Mon, 3 Jun 2024 10:19:57 -0400 Subject: [PATCH 1/2] Update CHANGELOG --- CHANGELOG.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6eb900dbb..c15f932d4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +# 0.38.0 (June 3, 2024) + +NEW FEATURES: +* Add support for listing Consul partitions [[GH-1940](https://github.com/hashicorp/consul-template/pull/1940)] +* Add support for listing exported services in a Consul partition [[GH-1940](https://github.com/hashicorp/consul-template/pull/1940)] +* Add support for grouping Consul services by port [[GH-1939](https://github.com/hashicorp/consul-template/pull/1939)] + # 0.37.6 (May 6, 2024) BUG FIXES: * Fix shimkv2 concatenation [GH-1921]https://github.com/hashicorp/consul-template/pull/1921/ From 2cc8cd6353d9996075d1988cfafd77259d2855c7 Mon Sep 17 00:00:00 2001 From: Nathan Coleman Date: Mon, 3 Jun 2024 10:20:12 -0400 Subject: [PATCH 2/2] Update version --- version/version.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/version/version.go b/version/version.go index 7b5323208..3616ac3a6 100644 --- a/version/version.go +++ b/version/version.go @@ -6,7 +6,7 @@ package version import "fmt" const ( - Version = "0.37.6" + Version = "0.38.0" VersionPrerelease = "" // "-dev", "-beta", "-rc1", etc. (include dash) )