Skip to content

Commit

Permalink
Bump PyISY, Minor stability updates
Browse files Browse the repository at this point in the history
  • Loading branch information
shbatm committed Feb 19, 2021
1 parent 63f7c73 commit ed7b1df
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# CHANGELOG - HACS Version of ISY994 Component

## [3.0.0dev16] - Bump PyISY, Minor stability updates

- Bump PyISY-beta to 3.0.0dev16.
- Fixes `group_all_on` reporting incorrectly
- Removes `hint` and presumptive status updates.
- Fix incorrect service function names for `set_on_level` and `set_ramp_rate`.
- Retry config setup on connection failure (#79)

## [3.0.0dev15-2] - Core Catchup to 2021.2.0

- Update for new fan model (backwards-compatibility) (#78)
Expand Down
2 changes: 1 addition & 1 deletion custom_components/isy994/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@
"deviceType": "urn:udi-com:device:X_Insteon_Lighting_Device:1"
}
],
"version": "3.0.0dev15-2"
"version": "3.0.0dev16"
}
4 changes: 2 additions & 2 deletions custom_components/isy994/services.py
Original file line number Diff line number Diff line change
Expand Up @@ -409,8 +409,8 @@ def async_setup_light_services(hass: HomeAssistantType):
platform = entity_platform.current_platform.get()

platform.async_register_entity_service(
SERVICE_SET_ON_LEVEL, SERVICE_SET_VALUE_SCHEMA, SERVICE_SET_ON_LEVEL
SERVICE_SET_ON_LEVEL, SERVICE_SET_VALUE_SCHEMA, "async_set_on_level"
)
platform.async_register_entity_service(
SERVICE_SET_RAMP_RATE, SERVICE_SET_RAMP_RATE_SCHEMA, SERVICE_SET_RAMP_RATE
SERVICE_SET_RAMP_RATE, SERVICE_SET_RAMP_RATE_SCHEMA, "async_set_ramp_rate"
)

0 comments on commit ed7b1df

Please sign in to comment.