Skip to content

Commit

Permalink
- documentation updates
Browse files Browse the repository at this point in the history
- version bump
  • Loading branch information
simbaja committed Dec 26, 2024
1 parent 95da3e0 commit c36ac2e
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 4 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@

# GE Home Appliances (SmartHQ) Changelog

## 0.6.15

- Feature: Improved Support for Laundry
- Breaking: Some enums changed names/values and may need updates to client code
- Bugfix: More deprecation fixes

## 0.6.14

- Bugfix: Error checking socket status [#304]
Expand Down
4 changes: 2 additions & 2 deletions custom_components/ge_home/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"integration_type": "hub",
"iot_class": "cloud_push",
"documentation": "https://github.com/simbaja/ha_gehome",
"requirements": ["gehomesdk==0.5.30","magicattr==0.1.6","slixmpp==1.8.3"],
"requirements": ["gehomesdk==0.5.41","magicattr==0.1.6","slixmpp==1.8.3"],
"codeowners": ["@simbaja"],
"version": "0.6.14"
"version": "0.6.15"
}
2 changes: 1 addition & 1 deletion hacs.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "GE Home (SmartHQ)",
"homeassistant": "2024.2.0",
"homeassistant": "2024.9.0",
"domains": ["binary_sensor", "sensor", "switch", "water_heater", "select", "button", "climate", "light", "number"],
"iot_class": "Cloud Polling"
}
14 changes: 13 additions & 1 deletion info.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,10 @@ A/C Controls:

#### Breaking Changes

{% if version_installed.split('.') | map('int') < '0.6.15'.split('.') | map('int') %}
- Some enums changed names/values and may need updates to client code
{% endif %}

{% if version_installed.split('.') | map('int') < '0.6.6'.split('.') | map('int') %}
- Requires HA version 2022.12.0 or later
{% endif %}
Expand All @@ -69,6 +73,10 @@ A/C Controls:

#### Features

{% if version_installed.split('.') | map('int') < '0.6.15'.split('.') | map('int') %}
- Improved Support for Laundry
{% endif %}

{% if version_installed.split('.') | map('int') < '0.6.9'.split('.') | map('int') %}
- Added additional fridge controls (#200)
{% endif %}
Expand Down Expand Up @@ -127,8 +135,12 @@ A/C Controls:

#### Bugfixes

{% if version_installed.split('.') | map('int') < '0.6.14'.split('.') | map('int') %}
{% if version_installed.split('.') | map('int') < '0.6.15'.split('.') | map('int') %}
- Bugfix: More deprecation fixes
{% endif %}


{% if version_installed.split('.') | map('int') < '0.6.14'.split('.') | map('int') %}
- Bugfix: Error checking socket status [#304]
- Bugfix: Error with setup [#301]
- Bugfix: Logger deprecations
Expand Down

0 comments on commit c36ac2e

Please sign in to comment.