From 04cf47dca2185e023968bb0999079b3d85a58206 Mon Sep 17 00:00:00 2001 From: Mahmood Ali Date: Thu, 29 Jul 2021 12:32:09 -0400 Subject: [PATCH] prepare for next dev cycle --- GNUmakefile | 2 +- version/version.go | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/GNUmakefile b/GNUmakefile index ea32880c0..a90090b93 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -27,7 +27,7 @@ PROTO_COMPARE_TAG ?= v1.0.3$(if $(findstring ent,$(GO_TAGS)),+ent,) # LAST_RELEASE is the git sha of the latest release corresponding to this branch. main should have the latest # published release, but backport branches should point to the parent tag (e.g. 1.0.8 in release-1.0.9 after 1.1.0 is cut). -LAST_RELEASE ?= v1.1.2 +LAST_RELEASE ?= v1.1.3 default: help diff --git a/version/version.go b/version/version.go index 083484602..522d7fc7f 100644 --- a/version/version.go +++ b/version/version.go @@ -11,12 +11,12 @@ var ( GitDescribe string // The main version number that is being run at the moment. - Version = "1.1.3" + Version = "1.1.4" // 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 = "" + VersionPrerelease = "dev" // VersionMetadata is metadata further describing the build type. VersionMetadata = ""