From f237bc49a09fead463941e322da07b776e95c63b Mon Sep 17 00:00:00 2001 From: Wouter Born Date: Mon, 8 Jul 2024 08:35:38 +0200 Subject: [PATCH] Update OH version in skeleton scripts (#17021) Signed-off-by: Wouter Born --- 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 b943acf0f7..6ecda2fd95 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.2.0-SNAPSHOT" +SET OpenhabVersion="4.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 f5feae4d2b..e035e8a93f 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.2.0-SNAPSHOT +openHABVersion=4.3.0-SNAPSHOT camelcaseId=$1 id=`echo $camelcaseId | tr '[:upper:]' '[:lower:]'` -- 2.47.3