From b77a85fcc5611f5e32146556497b70694c05601f Mon Sep 17 00:00:00 2001 From: Christoph Weitkamp Date: Mon, 20 Dec 2021 08:29:43 +0100 Subject: [PATCH] Update OH version in skeleton scripts (#11820) Signed-off-by: Christoph Weitkamp --- bundles/create_openhab_binding_skeleton.cmd | 2 +- bundles/create_openhab_binding_skeleton.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bundles/create_openhab_binding_skeleton.cmd b/bundles/create_openhab_binding_skeleton.cmd index 45d914318d..6319e68e48 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.2.0-SNAPSHOT" +SET OpenhabVersion="3.3.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 7178cfe625..9e85dde3c5 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.2.0-SNAPSHOT +openHABVersion=3.3.0-SNAPSHOT camelcaseId=$1 id=`echo $camelcaseId | tr '[:upper:]' '[:lower:]'` -- 2.47.3