]> arthur.barton.de Git - netdata.git/commitdiff
Switch _prerelease to _rolling
authorSimon Nagl <sin6332@thi.de>
Sat, 11 Feb 2017 12:53:05 +0000 (13:53 +0100)
committerSimon Nagl <sin6332@thi.de>
Sat, 11 Feb 2017 12:53:05 +0000 (13:53 +0100)
configure.ac
packaging/update-tags

index ad71b6a86ae457a6f9126d8e881ce6325309388d..20a74696baf00eba6ad85a83ecc2c54e51b19306 100644 (file)
@@ -7,15 +7,15 @@ define([VERSION_MAJOR], [1])
 define([VERSION_MINOR], [5])
 define([VERSION_FIX], [1])
 define([VERSION_NUMBER], VERSION_MAJOR[.]VERSION_MINOR[.]VERSION_FIX)
-define([VERSION_SUFFIX], [_prerelease])
+define([VERSION_SUFFIX], [_rolling])
 
 dnl Set to "1" for a first RPM release of a new version
 PACKAGE_RPM_RELEASE="0.0.$(echo VERSION_SUFFIX | sed s/^_//)"
 
 define([VERSION_STRING], m4_esyscmd_s(git describe 2>/dev/null | sed 's/^v//'))
-m4_ifval(VERSION_STRING, [], [define([VERSION_STRING], VERSION_NUMBER[]VERSION_SUFFIX)])
+m4_ifval(VERSION_STRING, [], [define([VERSION_STRING], VERSION_NUMBER)])
 
-AC_INIT([netdata], VERSION_STRING)
+AC_INIT([netdata], VERSION_STRING[]VERSION_SUFFIX)
 
 AM_MAINTAINER_MODE([disable])
 if test x"$USE_MAINTAINER_MODE" = xyes; then
index 519934850f9cf6dab959977a16f093f2e4ead3c9..f2d641b3b940b655315c21c0537441042abf9d13 100755 (executable)
@@ -135,7 +135,7 @@ then
   fi
 
   echo "Resetting suffix in configure.ac:"
-  sed -i -e 's/define(\[VERSION_SUFFIX\], \[.*])/define([VERSION_SUFFIX], [_prerelease])/' configure.ac
+  sed -i -e 's/define(\[VERSION_SUFFIX\], \[.*])/define([VERSION_SUFFIX], [_rolling])/' configure.ac
   sed -i -e 's:^PACKAGE_RPM_RELEASE=.*:PACKAGE_RPM_RELEASE="0.0.$(echo VERSION_SUFFIX | sed s/^_//)":' configure.ac
 
   echo "Committing new configure.ac:"