diff --git a/snips/CHANGELOG.md b/snips/CHANGELOG.md index 9765872..bed91dd 100644 --- a/snips/CHANGELOG.md +++ b/snips/CHANGELOG.md @@ -1,55 +1,72 @@ # Changelog +## 6.0 + +- Updated to snips 0.64.0 + +***Warning: Need new NLU*** + ## 5.3 + - Updated to snips 0.63.2 - Pinned docker version to 0.63.2 - set hermes/hotword/+/detected out to allow subscribing from other systems ## 5.2 + - Updated to snips 0.62.3 - Add snips-injection ## 5.1 + - Updated to snips 0.60.8 - Containers built from base images ## 5.0 + - Updated to snips 0.60.1 ## 4.0 + - Use new Hass.io Services API and cleanup config ## 3.3 + - Updated to snips 0.58.3 - NOTE: This version requires an updated assistant from the Snips Console. ## 3.2 + - Added snips-asr-injections service to allow dynamic entity names ## 3.1 + - Updated to snips version 0.56.4 ## 3.0 + - Updated to snips version 0.55.2 - Updated default assistant with additional languages - Added custom tts which use HA TTS platforms ## 2.0 + - Use new Supervisor Audio backend - Update preinstalled assistant for Home-Assistant ## 1.0 + - Updated to snips version 0.53.17 ## 0.9 + - Update preinstalled assistant for Home-Assistant ## 0.8 + - Updated to snips version 0.52.7 ## 0.7 + - Updated to snips version 0.51.14 - Added default assistant for hassio builtin intents - -## 0.6.5-p1 -- Bugfix wrong path to assistant files diff --git a/snips/Dockerfile b/snips/Dockerfile index 41475a4..5227c1c 100644 --- a/snips/Dockerfile +++ b/snips/Dockerfile @@ -27,18 +27,19 @@ RUN apt-get update \ && apt-key adv --keyserver pgp.surfnet.nl --recv-keys D4F50CDCA10A2849; \ fi +ARG SNIPS_VERSION RUN apt-get update \ && apt-get install -y --no-install-recommends \ - snips-platform-voice=0.63.2 \ - snips-asr=0.63.2 \ - snips-injection=0.63.2 \ - snips-watch=0.63.2 \ + snips-platform-voice=${SNIPS_VERSION} \ + snips-asr=${SNIPS_VERSION} \ + snips-injection=${SNIPS_VERSION} \ + snips-watch=${SNIPS_VERSION} \ mosquitto \ - snips-audio-server=0.63.2 \ - snips-dialogue=0.63.2 \ - snips-hotword=0.63.2 \ - snips-nlu=0.63.2 \ - snips-tts=0.63.2 \ + snips-audio-server=${SNIPS_VERSION} \ + snips-dialogue=${SNIPS_VERSION} \ + snips-hotword=${SNIPS_VERSION} \ + snips-nlu=${SNIPS_VERSION} \ + snips-tts=${SNIPS_VERSION} \ && rm -rf /var/lib/apt/lists/* \ && curl -L -o /assistant_Hass_de.zip https://s3.amazonaws.com/hassio-addons-data/assistant_Hass_de.zip \ && curl -L -o /assistant_Hass_en.zip https://s3.amazonaws.com/hassio-addons-data/assistant_Hass_en.zip \ diff --git a/snips/build.json b/snips/build.json index 1a0d0ca..5575900 100644 --- a/snips/build.json +++ b/snips/build.json @@ -2,5 +2,8 @@ "build_from": { "armhf": "homeassistant/armhf-base-raspbian:stretch", "amd64": "homeassistant/amd64-base-ubuntu:16.04" + }, + "args": { + "SNIPS_VERSION": "0.64.0" } } diff --git a/snips/config.json b/snips/config.json index d5ef5aa..5332040 100644 --- a/snips/config.json +++ b/snips/config.json @@ -1,6 +1,6 @@ { "name": "Snips.AI", - "version": "5.3", + "version": "6.0", "slug": "snips", "description": "Local voice control platform", "url": "https://home-assistant.io/addons/snips/",