From: Cédric Skwar <64905406+benni347@users.noreply.github.com> Date: Wed, 13 Sep 2023 17:34:15 +0000 (+0200) Subject: Update version in create binding skeleton scripts (#15589) X-Git-Url: https://git.basschouten.com/?a=commitdiff_plain;h=7da3012134c14dd28a0d03b3eae2397357fa6d13;p=openhab-addons.git Update version in create binding skeleton scripts (#15589) Fixed the bug where you could not compile since the parent openHAB version was wrong in the build conf. Signed-off-by: Cedric Skwar --- diff --git a/bundles/create_openhab_binding_skeleton.cmd b/bundles/create_openhab_binding_skeleton.cmd index d05ed5f579..764d02ccfc 100644 --- a/bundles/create_openhab_binding_skeleton.cmd +++ b/bundles/create_openhab_binding_skeleton.cmd @@ -10,7 +10,7 @@ IF %ARGC% NEQ 3 ( exit /B 1 ) -SET OpenhabVersion="4.0.0-SNAPSHOT" +SET OpenhabVersion="4.1.0-SNAPSHOT" SET BindingIdInCamelCase=%~1 SET BindingIdInLowerCase=%BindingIdInCamelCase% diff --git a/bundles/create_openhab_binding_skeleton.sh b/bundles/create_openhab_binding_skeleton.sh index be6d0798d6..8f0b85e75e 100755 --- a/bundles/create_openhab_binding_skeleton.sh +++ b/bundles/create_openhab_binding_skeleton.sh @@ -2,7 +2,7 @@ [ $# -lt 3 ] && { echo "Usage: $0 "; exit 1; } -openHABVersion=4.0.0-SNAPSHOT +openHABVersion=4.1.0-SNAPSHOT camelcaseId=$1 id=`echo $camelcaseId | tr '[:upper:]' '[:lower:]'`