From: Wouter Born Date: Sat, 23 Dec 2023 09:34:54 +0000 (+0100) Subject: Update OH version in skeleton scripts (#16100) X-Git-Url: https://git.basschouten.com/?a=commitdiff_plain;h=dc187c9eec267cd4c6fa57d883db48b281f8fad8;p=openhab-addons.git Update OH version in skeleton scripts (#16100) --- diff --git a/bundles/create_openhab_binding_skeleton.cmd b/bundles/create_openhab_binding_skeleton.cmd index 764d02ccfc..b943acf0f7 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.1.0-SNAPSHOT" +SET OpenhabVersion="4.2.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 8f0b85e75e..f5feae4d2b 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.1.0-SNAPSHOT +openHABVersion=4.2.0-SNAPSHOT camelcaseId=$1 id=`echo $camelcaseId | tr '[:upper:]' '[:lower:]'`