From 314641219cbf332b0ecefc02f9f2b3f211c73fd3 Mon Sep 17 00:00:00 2001 From: hashicorp-ci Date: Mon, 21 Dec 2020 18:59:20 +0000 Subject: [PATCH] Release v0.22.0 --- CHANGELOG.md | 2 +- version/version.go | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5423d1640b..2d758abea2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -## UNRELEASED +## 0.22.0 (December 21, 2020) BUG FIXES: * Connect: on termination of a connect injected pod the lifecycle-sidecar sometimes re-registered the application resulting in diff --git a/version/version.go b/version/version.go index a8231a4960..814d64f059 100644 --- a/version/version.go +++ b/version/version.go @@ -14,12 +14,12 @@ var ( // // Version must conform to the format expected by // github.com/hashicorp/go-version for tests to work. - Version = "0.21.0" + Version = "0.22.0" // A pre-release marker for the version. If this is "" (empty string) // then it means that it is a final release. Otherwise, this is a pre-release // such as "dev" (in development), "beta", "rc1", etc. - VersionPrerelease = "dev" + VersionPrerelease = "" ) // GetHumanVersion composes the parts of the version in a way that's suitable