]> git.basschouten.com Git - openhab-addons.git/commitdiff
Update OH version in skeleton scripts (#11820)
authorChristoph Weitkamp <github@christophweitkamp.de>
Mon, 20 Dec 2021 07:29:43 +0000 (08:29 +0100)
committerGitHub <noreply@github.com>
Mon, 20 Dec 2021 07:29:43 +0000 (08:29 +0100)
Signed-off-by: Christoph Weitkamp <github@christophweitkamp.de>
bundles/create_openhab_binding_skeleton.cmd
bundles/create_openhab_binding_skeleton.sh

index 45d914318dd1d5da85872c29064ae3105e22f6c6..6319e68e48901f561492039008d42ad6130d460c 100644 (file)
@@ -10,7 +10,7 @@ IF %ARGC% NEQ 3 (
        exit /B 1\r
 )\r
 \r
-SET OpenhabVersion="3.2.0-SNAPSHOT"\r
+SET OpenhabVersion="3.3.0-SNAPSHOT"\r
 \r
 SET BindingIdInCamelCase=%~1\r
 SET BindingIdInLowerCase=%BindingIdInCamelCase%\r
index 7178cfe6254257f8885598544f57a808eddb69a9..9e85dde3c5ef21c8ecb3cf7c266b9cd44f7954b8 100755 (executable)
@@ -2,7 +2,7 @@
 
 [ $# -lt 3 ] && { echo "Usage: $0 <BindingIdInCamelCase> <Author> <GitHub Username>"; exit 1; }
 
-openHABVersion=3.2.0-SNAPSHOT
+openHABVersion=3.3.0-SNAPSHOT
 
 camelcaseId=$1
 id=`echo $camelcaseId | tr '[:upper:]' '[:lower:]'`