]> git.basschouten.com Git - openhab-addons.git/commitdiff
Update version in create binding skeleton scripts (#15589)
authorCédric Skwar <64905406+benni347@users.noreply.github.com>
Wed, 13 Sep 2023 17:34:15 +0000 (19:34 +0200)
committerGitHub <noreply@github.com>
Wed, 13 Sep 2023 17:34:15 +0000 (19:34 +0200)
Fixed the bug where you could not compile since the parent openHAB version was wrong in the build conf.

Signed-off-by: Cedric Skwar <cdrc@skwar.me>
bundles/create_openhab_binding_skeleton.cmd
bundles/create_openhab_binding_skeleton.sh

index d05ed5f57903b5161be6594d6f0b9dac6abb9a11..764d02ccfcb9960014b26d9fe220845623395555 100644 (file)
@@ -10,7 +10,7 @@ IF %ARGC% NEQ 3 (
        exit /B 1\r
 )\r
 \r
-SET OpenhabVersion="4.0.0-SNAPSHOT"\r
+SET OpenhabVersion="4.1.0-SNAPSHOT"\r
 \r
 SET BindingIdInCamelCase=%~1\r
 SET BindingIdInLowerCase=%BindingIdInCamelCase%\r
index be6d0798d67bd1fedd88260aab1cdc226d758616..8f0b85e75eb732e57a37a1aa8c959ba841ee8314 100755 (executable)
@@ -2,7 +2,7 @@
 
 [ $# -lt 3 ] && { echo "Usage: $0 <BindingIdInCamelCase> <Author> <GitHub Username>"; exit 1; }
 
-openHABVersion=4.0.0-SNAPSHOT
+openHABVersion=4.1.0-SNAPSHOT
 
 camelcaseId=$1
 id=`echo $camelcaseId | tr '[:upper:]' '[:lower:]'`