diff --git a/CHANGELOG.md b/CHANGELOG.md index 54f6a7b..f1ce374 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,17 @@ 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.2.1](https://github.com/danobot/entity-controller/compare/v9.2.0...v9.2.1) (2021-02-04) + + +### Bug Fixes + +* error messages used wrong variable ([9f20fb5](https://github.com/danobot/entity-controller/commit/9f20fb5)) +* warn about potential configuration errors (could also mean entity is still initialising after reboot) ([7545d2e](https://github.com/danobot/entity-controller/commit/7545d2e)) + + + # [9.2.0](https://github.com/danobot/entity-controller/compare/v9.1.0...v9.2.0) (2020-12-04) diff --git a/custom_components/entity_controller/__init__.py b/custom_components/entity_controller/__init__.py index 1cd6a39..379049c 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.0 +Version: v9.2.1 Project Page: https://danielbkr.net/projects/entity-controller/ Documentation: https://github.com/danobot/entity-controller """ @@ -105,7 +105,7 @@ -VERSION = '9.2.0' +VERSION = '9.2.1' _LOGGER = logging.getLogger(__name__) diff --git a/package-lock.json b/package-lock.json index d9130fd..259afc2 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "entity-controller", - "version": "9.2.0", + "version": "9.2.1", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index d491f75..5d81b17 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "entity-controller", - "version": "9.2.0", + "version": "9.2.1", "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": {