From 5ab580ab34de870b7d81e345a726201729caae07 Mon Sep 17 00:00:00 2001 From: edif30 Date: Fri, 21 Sep 2018 15:22:27 -0400 Subject: [PATCH 1/2] Bump gtts-token to 1.1.2 (#16775) * bump gtts-token to 1.1.2 * bump gtts-token to 1.1.2 * bump gtts-token to 1.1.2 --- homeassistant/components/tts/google.py | 2 +- requirements_all.txt | 2 +- requirements_test_all.txt | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/homeassistant/components/tts/google.py b/homeassistant/components/tts/google.py index cb05795c445..35a07ed8d22 100644 --- a/homeassistant/components/tts/google.py +++ b/homeassistant/components/tts/google.py @@ -17,7 +17,7 @@ import yarl from homeassistant.components.tts import CONF_LANG, PLATFORM_SCHEMA, Provider from homeassistant.helpers.aiohttp_client import async_get_clientsession -REQUIREMENTS = ['gTTS-token==1.1.1'] +REQUIREMENTS = ['gTTS-token==1.1.2'] _LOGGER = logging.getLogger(__name__) diff --git a/requirements_all.txt b/requirements_all.txt index 4102c58022c..5776a7c1944 100644 --- a/requirements_all.txt +++ b/requirements_all.txt @@ -383,7 +383,7 @@ freesms==0.1.2 fritzhome==1.0.4 # homeassistant.components.tts.google -gTTS-token==1.1.1 +gTTS-token==1.1.2 # homeassistant.components.sensor.gearbest gearbest_parser==1.0.7 diff --git a/requirements_test_all.txt b/requirements_test_all.txt index e1276da644c..e6d64857c4c 100644 --- a/requirements_test_all.txt +++ b/requirements_test_all.txt @@ -66,7 +66,7 @@ feedparser==5.2.1 foobot_async==0.3.1 # homeassistant.components.tts.google -gTTS-token==1.1.1 +gTTS-token==1.1.2 # homeassistant.components.ffmpeg ha-ffmpeg==1.9 From 5eda5f2f7b57747d176d0be0299980ae8b51b487 Mon Sep 17 00:00:00 2001 From: Paulus Schoutsen Date: Sat, 22 Sep 2018 11:18:54 +0200 Subject: [PATCH 2/2] Bumped version to 0.78.3 --- homeassistant/const.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/homeassistant/const.py b/homeassistant/const.py index 2907aed5bd5..e61d406b1fb 100644 --- a/homeassistant/const.py +++ b/homeassistant/const.py @@ -2,7 +2,7 @@ """Constants used by Home Assistant components.""" MAJOR_VERSION = 0 MINOR_VERSION = 78 -PATCH_VERSION = '2' +PATCH_VERSION = '3' __short_version__ = '{}.{}'.format(MAJOR_VERSION, MINOR_VERSION) __version__ = '{}.{}'.format(__short_version__, PATCH_VERSION) REQUIRED_PYTHON_VER = (3, 5, 3)