From 3c6968bb2b26c1383aa103a3cff188013abca7b9 Mon Sep 17 00:00:00 2001 From: Daniel Mason Date: Sat, 30 Oct 2021 19:07:14 +0800 Subject: [PATCH 1/4] Update __init__.py --- custom_components/entity_controller/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/custom_components/entity_controller/__init__.py b/custom_components/entity_controller/__init__.py index 053be75..46cf4ca 100644 --- a/custom_components/entity_controller/__init__.py +++ b/custom_components/entity_controller/__init__.py @@ -18,7 +18,7 @@ """ Entity controller component for Home Assistant. Maintainer: Daniel Mason -Version: v9.2.9 +Version: v9.2.10 Project Page: https://danielbkr.net/projects/entity-controller/ Documentation: https://github.com/danobot/entity-controller """ From b67feb68e4ff2c30630d064c8fab99efaee6c257 Mon Sep 17 00:00:00 2001 From: Daniel Mason Date: Sat, 30 Oct 2021 19:07:55 +0800 Subject: [PATCH 2/4] Update manifest.json --- custom_components/entity_controller/manifest.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/custom_components/entity_controller/manifest.json b/custom_components/entity_controller/manifest.json index 4031a0f..8100054 100644 --- a/custom_components/entity_controller/manifest.json +++ b/custom_components/entity_controller/manifest.json @@ -13,5 +13,5 @@ ], "codeowners": ["@danobot"], "homeassistant": "0.117.0", - "version": "9.2.5" + "version": "9.2.10" } From e33bed0851987b98a11a304c800ac7dc592278d2 Mon Sep 17 00:00:00 2001 From: Daniel Mason Date: Sat, 30 Oct 2021 19:08:14 +0800 Subject: [PATCH 3/4] Update package.json --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 8c5fdae..de4b5cf 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "entity-controller", - "version": "9.2.9", + "version": "9.2.10", "description": "Entity Controller (EC) is an implementation of 'When This, Then That' using a finite state machine that ensures basic automations do not interfere with the rest of your home automation setup. This component encapsulates common automation scenarios into a neat package that can be configured easily and reused throughout your home.", "main": "index.js", "directories": { From 42cb537b37ad739fcfbe514afd0bc5151b7ccd3b Mon Sep 17 00:00:00 2001 From: Daniel Mason Date: Sat, 30 Oct 2021 19:09:12 +0800 Subject: [PATCH 4/4] feat: parameterise scripts (version bump) --- custom_components/entity_controller/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/custom_components/entity_controller/__init__.py b/custom_components/entity_controller/__init__.py index 46cf4ca..3bfa468 100644 --- a/custom_components/entity_controller/__init__.py +++ b/custom_components/entity_controller/__init__.py @@ -105,7 +105,7 @@ -VERSION = '9.2.9' +VERSION = '9.2.10' _LOGGER = logging.getLogger(__name__)