Skip to content

Commit

Permalink
chore(release): 5.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
actions-user committed Jan 10, 2020
1 parent 63f7aa8 commit ea2abf5
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 4 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,20 @@

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.

<a name="5.0.0"></a>
# [5.0.0](https://github.com/danobot/entity-controller/compare/v4.2.0...v5.0.0) (2020-01-10)


* feat!: handle overrides better ([63f7aa8](https://github.com/danobot/entity-controller/commit/63f7aa8))


### BREAKING CHANGES

* Entering the override state will no longer turn off the control entities. This was implemented with the ratiionale that overriding an EC should not cause further interaction with the control entities. If the entities are on, they remain on when transitioning from active to override state. If the entities are off, they remain off going from other states in to override state.
If your configuration relied on this previous behaviour it will be a breaking change for you. Its unlikely your config took advantage of this weird behaviour.



<a name="4.2.0"></a>
# [4.2.0](https://github.com/danobot/entity-controller/compare/v4.1.6...v4.2.0) (2019-12-21)

Expand Down
4 changes: 2 additions & 2 deletions custom_components/entity_controller/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""
Entity controller component for Home Assistant.
Maintainer: Daniel Mason
Version: v4.2.0
Version: v5.0.0
Documentation: https://github.com/danobot/entity-controller
Issues Tracker: Report issues on Github. Ensure you have the latest version. Include:
* YAML configuration (for the misbehaving entity)
Expand Down Expand Up @@ -32,7 +32,7 @@
CONSTRAIN_START = 1
CONSTRAIN_END = 2

VERSION = '4.2.0'
VERSION = '5.0.0'
SENSOR_TYPE_DURATION = 'duration'
SENSOR_TYPE_EVENT = 'event'
MODE_DAY = 'day'
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "entity-controller",
"version": "4.2.0",
"version": "5.0.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": {
Expand Down

0 comments on commit ea2abf5

Please sign in to comment.