From 82198d4e6c8e83ede062027d0164f6232a40f86c Mon Sep 17 00:00:00 2001 From: ewilly Date: Wed, 12 Aug 2020 16:51:17 +0200 Subject: [PATCH] Update HA version --- scripts/_common.sh | 3 +++ scripts/install | 2 +- scripts/upgrade | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/scripts/_common.sh b/scripts/_common.sh index b32d5cf..9ce60dd 100644 --- a/scripts/_common.sh +++ b/scripts/_common.sh @@ -2,6 +2,9 @@ # Common variables & functions # +# Release to install +VERSION=0.114.0 + # Package dependencies PKG_DEPENDENCIES="python3 python3-venv python3-pip build-essential libssl-dev libffi-dev python3-dev" diff --git a/scripts/install b/scripts/install index 42ec570..ab0577f 100644 --- a/scripts/install +++ b/scripts/install @@ -60,7 +60,7 @@ exec_as $app -H -s /bin/bash -c " \ && echo 'install a required python package' \ && pip install --upgrade wheel \ && echo 'install Home Assistant' \ - && pip install --upgrade $app==0.96.5 \ + && pip install --upgrade $app==$VERSION \ " # set default configuration files diff --git a/scripts/upgrade b/scripts/upgrade index 2ce4e78..7638ff5 100644 --- a/scripts/upgrade +++ b/scripts/upgrade @@ -43,7 +43,7 @@ exec_as "$app" -H -s /bin/bash -c " \ && echo 'install a required python package' \ && pip install --upgrade wheel \ && echo 'install Home Assistant' \ - && pip install --upgrade $app==0.96.5 \ + && pip install --upgrade $app==$VERSION \ " # setup up autostart using systemd