From 2a85de20a2e21c2e997d090ec256e2a94b75c45a Mon Sep 17 00:00:00 2001
From: hc-github-team-tf-core <hc-github-team-tf-core@users.noreply.github.com>
Date: Mon, 23 May 2022 23:09:16 +0000
Subject: [PATCH] Cleanup after v1.2.1 release

---
 CHANGELOG.md       | 2 ++
 version/version.go | 4 ++--
 2 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/CHANGELOG.md b/CHANGELOG.md
index f56e6f706e..ceccc06e1d 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,5 @@
+## 1.2.2 (Unreleased)
+
 ## 1.2.1 (May 23, 2022)
 
 BUG FIXES:
diff --git a/version/version.go b/version/version.go
index 0cc80d5590..03b2a51029 100644
--- a/version/version.go
+++ b/version/version.go
@@ -11,12 +11,12 @@ import (
 )
 
 // The main version number that is being run at the moment.
-var Version = "1.2.1"
+var Version = "1.2.2"
 
 // 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.
-var Prerelease = ""
+var Prerelease = "dev"
 
 // SemVer is an instance of version.Version. This has the secondary
 // benefit of verifying during tests and init time that our version is a
-- 
GitLab