From 223f84a03ef7dd96b34fa7ff7eb7ec1d556720b3 Mon Sep 17 00:00:00 2001 From: Ronald Ekambi Date: Thu, 18 May 2023 15:08:16 -0400 Subject: [PATCH] Update changelog for v0.32.0 --- CHANGELOG.md | 10 ++++++++++ version/version.go | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3cad1a426..47c5570a7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ +## v0.32.0 (May 18, 2023) + +IMPROVEMENTS: +* Add support for Vault agent environment variables. [GH-1741](https://github.com/hashicorp/consul-template/pull/1741) +* Upgrade hashicorp/vault/api from 1.8.2 to 1.9.1. [GH-1743](https://github.com/hashicorp/consul-template/pull/1743) + +REPO MAINTENANCE: +* remove repo-specific codeql action, in favor of centralized job. [GH-1740](https://github.com/hashicorp/consul-template/pull/1740/files) + + ## v0.31.0 (Apr 06, 2023) IMPROVEMENTS: diff --git a/version/version.go b/version/version.go index 4426d128b..719544062 100644 --- a/version/version.go +++ b/version/version.go @@ -6,7 +6,7 @@ package version import "fmt" const ( - Version = "0.31.0" + Version = "0.32.0" VersionPrerelease = "" // "-dev", "-beta", "-rc1", etc. (include dash) )