Skip to content

Commit aa5733e

Browse files
committed
chore(release): 4.1.6
1 parent 66a7a00 commit aa5733e

File tree

5 files changed

+16
-6
lines changed

5 files changed

+16
-6
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,16 @@
22

33
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.
44

5+
<a name="4.1.6"></a>
6+
## [4.1.6](https://github.com/danobot/entity-controller/compare/v4.1.5...v4.1.6) (2019-12-17)
7+
8+
9+
### Bug Fixes
10+
11+
* rollback implementation for [#98](https://github.com/danobot/entity-controller/issues/98), defective ([66a7a00](https://github.com/danobot/entity-controller/commit/66a7a00))
12+
13+
14+
515
<a name="4.1.5"></a>
616
## [4.1.5](https://github.com/danobot/entity-controller/compare/v4.1.4...v4.1.5) (2019-12-17)
717

custom_components/entity_controller/__init__.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""
22
Entity controller component for Home Assistant.
33
Maintainer: Daniel Mason
4-
Version: v4.1.5
4+
Version: v4.1.6
55
Documentation: https://github.com/danobot/entity-controller
66
Issues Tracker: Report issues on Github. Ensure you have the latest version. Include:
77
* YAML configuration (for the misbehaving entity)
@@ -32,7 +32,7 @@
3232
CONSTRAIN_START = 1
3333
CONSTRAIN_END = 2
3434

35-
VERSION = '4.1.5'
35+
VERSION = '4.1.6'
3636
SENSOR_TYPE_DURATION = 'duration'
3737
SENSOR_TYPE_EVENT = 'event'
3838
MODE_DAY = 'day'
@@ -320,7 +320,7 @@ def __init__(self, hass, config, machine, entity):
320320
self.start = None
321321
self.end = None
322322
self.reset_count = None
323-
logging.setFormatter(logging.Formatter(FORMAT))
323+
# logging.setFormatter(logging.Formatter(FORMAT))
324324
self.log = logging.getLogger(__name__ + '.' + config.get(CONF_NAME))
325325

326326
self.log.debug(

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "entity-controller",
3-
"version": "4.1.5",
3+
"version": "4.1.6",
44
"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.",
55
"main": "index.js",
66
"directories": {

tracker.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"entity_controller": {
3-
"version": "4.1.5",
3+
"version": "4.1.6",
44
"local_location": "/custom_components/entity_controller/__init__.py",
55
"remote_location": "https://raw.githubusercontent.com/danobot/entity-controller/master/custom_components/entity_controller/__init__.py",
66
"visit_repo": "https://github.com/danobot/entity-controller",

0 commit comments

Comments
 (0)