From: Wouter Born Date: Mon, 28 Jun 2021 09:00:31 +0000 (+0200) Subject: Update OH version in skeleton scripts (#10910) X-Git-Url: https://git.basschouten.com/?a=commitdiff_plain;h=4378e95acce67cb0441971948732ba1838050420;p=openhab-addons.git Update OH version in skeleton scripts (#10910) Signed-off-by: Wouter Born --- diff --git a/bundles/create_openhab_binding_skeleton.cmd b/bundles/create_openhab_binding_skeleton.cmd index 3f42714607..45d914318d 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.1.0-SNAPSHOT" +SET OpenhabVersion="3.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 ca93c59828..33946ba3d1 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.1.0-SNAPSHOT +openHABVersion=3.2.0-SNAPSHOT camelcaseId=$1 id=`echo $camelcaseId | tr '[:upper:]' '[:lower:]'`