From 00f27c256d4660d06eed4bdab181990e413adcd5 Mon Sep 17 00:00:00 2001 From: github-team-consul-core <github-team-consul-core@hashicorp.com> Date: Wed, 30 Oct 2024 11:49:03 -0600 Subject: [PATCH] remove the dev suffix from the 1.4.4 version in prep for release. --- pkg/version/version.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/version/version.go b/pkg/version/version.go index c60b0524..abd66e69 100644 --- a/pkg/version/version.go +++ b/pkg/version/version.go @@ -22,7 +22,7 @@ var ( // 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