Skip to content

Commit

Permalink
feat: prep for v0.10.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Thrilleratplay committed Feb 10, 2022
1 parent b0a6408 commit 2b0366b
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 14 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# Changelog
All notable changes to this project will be documented in this file.

## 0.10.1
**Fix:**
- **Renamed `device_state_attributes` to `extra_state_attributes`. Remove warnings related to Home Assistant [PR#47304](https://github.com/home-assistant/core/pull/47304)**

## 0.10.0
**Feat:**
- **Minimum and maximum temperature configurable.** Base on [SteveOnorato/moat_temp_hum_ble](https://github.com/SteveOnorato/moat_temp_hum_ble/). Thank you @SteveOnorato
Expand Down
2 changes: 1 addition & 1 deletion custom_components/govee_ble_hci/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@
"requirements": ["bleson==0.1.8"],
"dependencies": [],
"codeowners": ["@thrilleratplay"],
"version": "0.10.0",
"version": "0.10.1",
"iot_class": "local_polling"
}
4 changes: 2 additions & 2 deletions custom_components/govee_ble_hci/sensor.py
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,7 @@ def should_poll(self) -> bool:
return False

@property
def device_state_attributes(self):
def extra_state_attributes(self):
"""Return the state attributes."""
return self._device_state_attributes

Expand Down Expand Up @@ -351,7 +351,7 @@ def should_poll(self) -> bool:
return False

@property
def device_state_attributes(self):
def extra_state_attributes(self):
"""Return the state attributes."""
return self._device_state_attributes

Expand Down
13 changes: 2 additions & 11 deletions info.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,18 +9,9 @@ Existing users: I will continue to support this component for the foreseeable fu

Thank you @Ernst79 for adding the Govee devices. Ultimately, it makes more sense for you, the end users, to have one component that does everything well and to pool development resources to ensure issues can be resolved quickly.

## 0.10.0
**Feat:**
- **Minimum and maximum temperature configurable.** Base on [SteveOnorato/moat_temp_hum_ble](https://github.com/SteveOnorato/moat_temp_hum_ble/). Thank you @SteveOnorato
- **Devices now related.** Thank you @natekspencer
## 0.10.1
**Fix:**
- **Catch Bluetooth adapter error and provide useful information.**
**Chore:**
- **Removed "CONF_HCITOOL_ACTIVE"**


**BREAKING CHANGE** - With the removal of `CONF_HCITOOL_ACTIVE` if `hcitool_active` is still in your config, Home Assistant will not start. Please remove this deprecated flag.

- **Renamed `device_state_attributes` to `extra_state_attributes`. Remove warnings related to Home Assistant [PR#47304](https://github.com/home-assistant/core/pull/47304)**

**NOTE** FOR THOSE WHO ARE UPGRADING FROM V0.5 - a restart of the host device is suggested after upgrading this component. The previous implementation may still have processes running or sockets open which.could cause unforeseeable issues. I apologize for the inconvenience and future updates should go much smoother.

Expand Down

0 comments on commit 2b0366b

Please sign in to comment.