From f099266d9fa58a9502168697f73e4a3a5df8040f Mon Sep 17 00:00:00 2001 From: Carlos Amengual Date: Fri, 27 Sep 2024 17:23:29 +0200 Subject: [PATCH] Use 1-stable branch in `changes.sh` script --- changes.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/changes.sh b/changes.sh index b3baee995..fbaf415ab 100755 --- a/changes.sh +++ b/changes.sh @@ -5,10 +5,10 @@ # You'll probably want to edit manually the result of executing the script. # if [[ $# -eq 0 ]] ; then - echo "No version supplied (e.g. '0.1.2')" + echo "No version supplied (e.g. '1.2.4')" exit 1 fi -OLDTAG=`git tag -l --merged master --sort=-taggerdate|head -1` +OLDTAG=`git tag -l --merged 1-stable --sort=-taggerdate|head -1` echo "Writing changes from tag $OLDTAG" TITLE="EchoSVG CHANGES" VERHDR="Version ${1}"