From: Amos Jeffries Date: Mon, 20 Jan 2020 07:04:05 +0000 (+1300) Subject: 5.0.1 (#548) X-Git-Tag: SQUID_5_0_1 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=8a511d5e05aa17b47c7566839fd9c524512489d3;p=thirdparty%2Fsquid.git 5.0.1 (#548) --- diff --git a/configure.ac b/configure.ac index f60a913c4d..e33d3eceac 100644 --- a/configure.ac +++ b/configure.ac @@ -5,7 +5,7 @@ ## Please see the COPYING and CONTRIBUTORS files for details. ## -AC_INIT([Squid Web Proxy],[5.0.0-VCS],[http://bugs.squid-cache.org/],[squid]) +AC_INIT([Squid Web Proxy],[5.0.1-VCS],[http://bugs.squid-cache.org/],[squid]) AC_PREREQ(2.61) AC_CONFIG_HEADERS([include/autoconf.h]) AC_CONFIG_AUX_DIR(cfgaux) diff --git a/mkrelease.sh b/mkrelease.sh index 9d311e42ee..1c1f0ba648 100755 --- a/mkrelease.sh +++ b/mkrelease.sh @@ -25,7 +25,7 @@ RELEASE_TIME=`date +%s` # # check that $rev has the right syntax # -checkrev=`expr $rev : '\([0-9]\.[0-9]\(\.[0-9\.]\)*\)'` +checkrev=`expr $rev : '\([0-9]\.[0-9]\+\(\.[0-9\.]\)*\)'` if test "$rev" != "$checkrev" ; then echo "revision '$rev' has incorrect syntax. Should be like '3.1.0.1'" exit 1;