Update OH version in skeleton scripts (#16100)

This commit is contained in:
Wouter Born
2023-12-23 10:34:54 +01:00
committed by GitHub
parent 533cc666ab
commit dc187c9eec
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="4.1.0-SNAPSHOT"
SET OpenhabVersion="4.2.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=4.1.0-SNAPSHOT
openHABVersion=4.2.0-SNAPSHOT
camelcaseId=$1
id=`echo $camelcaseId | tr '[:upper:]' '[:lower:]'`