Skip to content

Commit

Permalink
Update to 1.1.2
Browse files Browse the repository at this point in the history
Adding configuration url (HA 2012.11.0)
Minor update to issue template
  • Loading branch information
golles committed Nov 3, 2021
1 parent d413064 commit b2ffed1
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 15 deletions.
17 changes: 4 additions & 13 deletions .github/ISSUE_TEMPLATE/issue.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,35 +8,26 @@ about: Create a report to help us improve
Issues not containing the minimum requirements will be closed:
- Issues without component version will be closed.
- Issues without a description (using the header is not good enough) will be closed.
- Issues without debug logging will be closed.
- Issues without configuration will be closed
-->

## Version of the custom_component
<!-- If you are not using the newest version, download and try that before opening an issue
If you are unsure about the version check the const.py file.
If you are unsure about the version check the const.py or manifest.json file.
-->

## Configuration

```yaml

Add your logs here.

```
1.0.0

## Describe the bug
A clear and concise description of what the bug is.
<!-- A clear and concise description of what the bug is. -->


## Debug log

<!-- To enable debug logs check this https://www.home-assistant.io/components/logger/ -->

```text
Add your logs here.
```
2 changes: 1 addition & 1 deletion custom_components/knmi/const.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
# Base component constants.
NAME = "KNMI"
DOMAIN = "knmi"
VERSION = "1.1.1"
VERSION = "1.1.2"
ATTRIBUTION = "KNMI Weergegevens via https://weerlive.nl/"

# Platforms.
Expand Down
2 changes: 2 additions & 0 deletions custom_components/knmi/entity.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ def device_info(self):
"name": NAME,
"model": VERSION,
"manufacturer": NAME,
"entry_type": "service",
"configuration_url": "http://weerlive.nl/api/toegang/account.php",
}

@property
Expand Down
2 changes: 1 addition & 1 deletion custom_components/knmi/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"documentation": "https://github.com/golles/ha-knmi/",
"iot_class": "cloud_polling",
"issue_tracker": "https://github.com/golles/ha-knmi//issues",
"version": "1.1.1",
"version": "1.1.2",
"config_flow": true,
"codeowners": [
"@golles"
Expand Down

0 comments on commit b2ffed1

Please sign in to comment.