From 605574b6009a538300eb1f9a6b1ee2d079d3b949 Mon Sep 17 00:00:00 2001 From: Hilbrand Bouwkamp Date: Mon, 26 Dec 2022 10:17:42 +0100 Subject: [PATCH] Set openHAB to correct version in binding skeleton scripts. (#14061) Signed-off-by: Hilbrand Bouwkamp --- 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 08957f4fed2d8..d05ed5f57903b 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.4.0-SNAPSHOT" +SET OpenhabVersion="4.0.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 0fcd92c952f2b..be6d0798d67bd 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.4.0-SNAPSHOT +openHABVersion=4.0.0-SNAPSHOT camelcaseId=$1 id=`echo $camelcaseId | tr '[:upper:]' '[:lower:]'`