From 116557faf3b980ae2e77d9403c1e7f406f59f557 Mon Sep 17 00:00:00 2001 From: Tim Gross Date: Thu, 26 Sep 2024 15:04:05 -0400 Subject: [PATCH] correct LAST_RELEASE in makefile --- GNUmakefile | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/GNUmakefile b/GNUmakefile index 8f08da37e96..99647d99368 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -42,9 +42,11 @@ endif # tag corresponding to latest release we maintain backward compatibility with 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, and release branches should point to the latest published release in the X.Y release line. -LAST_RELEASE ?= v1.8.3 +# LAST_RELEASE is used for generating the changelog. It is the last released GA +# or backport version, without the leading "v". main should have the latest +# published release here, and release branches should point to the latest +# published release in their X.Y release line. +LAST_RELEASE ?= 1.8.4 default: help