From fb929ef98fefed8c22bb7422da5865412aa0b843 Mon Sep 17 00:00:00 2001 From: John Eikenberry Date: Fri, 5 Nov 2021 10:40:13 -0700 Subject: [PATCH] v0.27.2 changelog and version update --- CHANGELOG.md | 7 +++++-- version/version.go | 2 +- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 01258136f..fc28aa4ae 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,11 @@ +## v0.27.2 (Nov 05, 2021) + +BUG FIXES: +* Syslog doesn't work after upgrade to 0.27 [[GH-1523](https://github.com/hashicorp/consul-template/issues/1523), [GH-1529](https://github.com/hashicorp/consul-template/pull/1529)] + ## v0.27.1 (Sep 22, 2021) IMPROVEMENTS: - * Updated command execution on \*nix systems to call the command directly, without the `sh -c` wrapping shell command, *only* in cases where the command is a single word (no spaces). This allows docker to run in environments (like @@ -11,7 +15,6 @@ IMPROVEMENTS: [GH-1508](https://github.com/hashicorp/consul-template/issues/1508)] SECURITY: - * Updated golang.or/x/crypto dependency for CVE-2020-29652. [[GH-1507](https://github.com/hashicorp/consul-template/issues/1507)] diff --git a/version/version.go b/version/version.go index 2e17c61f3..56d8fbc27 100644 --- a/version/version.go +++ b/version/version.go @@ -3,7 +3,7 @@ package version import "fmt" const ( - Version = "0.27.1" + Version = "0.27.2" VersionPrerelease = "" // "-dev", "-beta", "-rc1", etc. (include dash) )