From: netwolfuk Date: Sun, 10 Jul 2022 09:24:32 +0000 (+1200) Subject: Update OH version in skeleton scripts (#13107) X-Git-Url: https://git.basschouten.com/?a=commitdiff_plain;h=cfb09bdc48fbe39c0d84f177a67a596e49cf4ae0;p=openhab-addons.git Update OH version in skeleton scripts (#13107) Signed-off-by: Nathaniel Wolfe --- diff --git a/bundles/create_openhab_binding_skeleton.cmd b/bundles/create_openhab_binding_skeleton.cmd index 6319e68e48..08957f4fed 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="3.3.0-SNAPSHOT" +SET OpenhabVersion="3.4.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 9e85dde3c5..0fcd92c952 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=3.3.0-SNAPSHOT +openHABVersion=3.4.0-SNAPSHOT camelcaseId=$1 id=`echo $camelcaseId | tr '[:upper:]' '[:lower:]'`