Skip to content

Commit

Permalink
Update OH version in skeleton scripts (#17951)
Browse files Browse the repository at this point in the history
Signed-off-by: Wouter Born <[email protected]>
  • Loading branch information
wborn authored Dec 22, 2024
1 parent 5e7d2fc commit 420454b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bundles/create_openhab_binding_skeleton.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ IF %ARGC% NEQ 3 (
exit /B 1
)

SET OpenhabVersion="4.3.0-SNAPSHOT"
SET OpenhabVersion="5.0.0-SNAPSHOT"

SET BindingIdInCamelCase=%~1
SET BindingIdInLowerCase=%BindingIdInCamelCase%
Expand Down
2 changes: 1 addition & 1 deletion bundles/create_openhab_binding_skeleton.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[ $# -lt 3 ] && { echo "Usage: $0 <BindingIdInCamelCase> <Author> <GitHub Username>"; exit 1; }

openHABVersion=4.3.0-SNAPSHOT
openHABVersion=5.0.0-SNAPSHOT

camelcaseId=$1
id=`echo $camelcaseId | tr '[:upper:]' '[:lower:]'`
Expand Down

0 comments on commit 420454b

Please sign in to comment.