# HG changeset patch # User Martin van Dinther <martin.van.dinther@monetdbsolutions.com> # Date 1666198361 -7200 # Node ID 3c40f672174c34abc1c6926315f54f911333b6d3 # Parent ee1f3b3ff5fde2c7eeffadd633dd45e4a3666120 Remove no longer needed MCL version numbers. diff --git a/build.properties b/build.properties --- a/build.properties +++ b/build.properties @@ -3,16 +3,6 @@ ## -## MCL -## - -# major release number -MCL_MAJOR=1 -# minor release number -MCL_MINOR=21 - - -## ## JDBC (and client) ## diff --git a/version.sh b/version.sh --- a/version.sh +++ b/version.sh @@ -7,7 +7,7 @@ # Copyright 1997 - July 2008 CWI, August 2008 - 2022 MonetDB B.V. if [[ -z $1 ]] ; then - echo "Usage: $0 [-w] <(jdbc|mcl)> <(major|minor|suffix)=newversion> [...]" + echo "Usage: $0 [-w] jdbc <(major|minor|suffix)=newversion> [...]" echo "where -w activates actual write of changes" exit -1 fi @@ -37,10 +37,6 @@ case $1 in TYPE=JDBC FILES="monetdb-jdbc-XXX.jar" ;; - mcl) - TYPE=MCL - FILES="monetdb-mcl-XXX.jar" - ;; *) echo "invalid type: $1" exit -1