Update OH version in skeleton scripts (#19005)

Signed-off-by: Wouter Born <github@maindrain.net>
This commit is contained in:
Wouter Born
2025-07-21 21:29:16 +02:00
committed by GitHub
parent 90b3d12aa3
commit 5d0339ab09
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -10,7 +10,7 @@ IF %ARGC% NEQ 3 (
exit /B 1
)
SET OpenhabVersion="5.0.0-SNAPSHOT"
SET OpenhabVersion="5.1.0-SNAPSHOT"
SET BindingIdInCamelCase=%~1
SET BindingIdInLowerCase=%BindingIdInCamelCase%
+1 -1
View File
@@ -2,7 +2,7 @@
[ $# -lt 3 ] && { echo "Usage: $0 <BindingIdInCamelCase> <Author> <GitHub Username>"; exit 1; }
openHABVersion=5.0.0-SNAPSHOT
openHABVersion=5.1.0-SNAPSHOT
camelcaseId=$1
id=`echo $camelcaseId | tr '[:upper:]' '[:lower:]'`