From 7da3012134c14dd28a0d03b3eae2397357fa6d13 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9dric=20Skwar?= <64905406+benni347@users.noreply.github.com> Date: Wed, 13 Sep 2023 19:34:15 +0200 Subject: [PATCH] Update version in create binding skeleton scripts (#15589) Fixed the bug where you could not compile since the parent openHAB version was wrong in the build conf. Signed-off-by: Cedric Skwar --- 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 d05ed5f57..764d02ccf 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.0.0-SNAPSHOT" +SET OpenhabVersion="4.1.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 be6d0798d..8f0b85e75 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.0.0-SNAPSHOT +openHABVersion=4.1.0-SNAPSHOT camelcaseId=$1 id=`echo $camelcaseId | tr '[:upper:]' '[:lower:]'`