From d6895df93aaf59b863e32152b83a5b8940332b2f Mon Sep 17 00:00:00 2001 From: GitHub Action Date: Fri, 16 Oct 2020 11:24:20 +0000 Subject: [PATCH] chore(release): 9.1.0 --- CHANGELOG.md | 10 ++++++++++ custom_components/entity_controller/__init__.py | 4 ++-- package-lock.json | 2 +- package.json | 2 +- 4 files changed, 14 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4b1eea5..51acb1a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,16 @@ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. + +# [9.1.0](https://github.com/danobot/entity-controller/compare/v9.0.2...v9.1.0) (2020-10-16) + + +### Features + +* Allow 'ignored_event_sources' to contain Regex patterns to support integrations with dynamic context ids ([34df56e](https://github.com/danobot/entity-controller/commit/34df56e)), closes [/github.com/home-assistant/core/pull/40626#issuecomment-709373896](https://github.com//github.com/home-assistant/core/pull/40626/issues/issuecomment-709373896) + + + ## [9.0.2](https://github.com/danobot/entity-controller/compare/v9.0.1...v9.0.2) (2020-10-12) diff --git a/custom_components/entity_controller/__init__.py b/custom_components/entity_controller/__init__.py index 7f9d9f1..c93421b 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.0.2 +Version: v9.1.0 Project Page: https://danielbkr.net/projects/entity-controller/ Documentation: https://github.com/danobot/entity-controller """ @@ -101,7 +101,7 @@ -VERSION = '9.0.2' +VERSION = '9.1.0' _LOGGER = logging.getLogger(__name__) diff --git a/package-lock.json b/package-lock.json index 078641b..d265d94 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "entity-controller", - "version": "9.0.2", + "version": "9.1.0", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 671c8ca..733046c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "entity-controller", - "version": "9.0.2", + "version": "9.1.0", "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": {