Skip to content

Commit

Permalink
Merge pull request #7 from lorenzo-deluca/develop
Browse files Browse the repository at this point in the history
update to v0.8.1
  • Loading branch information
lorenzo-deluca authored Dec 21, 2022
2 parents ee15362 + 42220c4 commit 999f6f0
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 8 deletions.
2 changes: 2 additions & 0 deletions .devcontainer/configuration.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,5 @@ logger:
custom_components.silencescooter: debug
# If you need to debug uncommment the line below (doc: https://www.home-assistant.io/integrations/debugpy/)
debugpy:
start: true
wait: true
16 changes: 10 additions & 6 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
// See https://aka.ms/vscode-remote/devcontainer.json for format details.
{
"image": "ludeeus/container:integration-debian",
"name": "Silence Scooter Integration integration development",
"image": "ghcr.io/ludeeus/devcontainer/integration:stable",
"context": "..",
"appPort": ["9123:8123"],
"appPort": [
"8123:8123"
],
"postCreateCommand": "container install",
"extensions": [
"ms-python.python",
Expand All @@ -15,14 +15,18 @@
"files.eol": "\n",
"editor.tabSize": 4,
"terminal.integrated.shell.linux": "/bin/bash",
"python.pythonPath": "/usr/bin/python3",
"python.pythonPath": "/usr/local/python/bin/python",
"python.analysis.autoSearchPaths": false,
"python.linting.pylintEnabled": true,
"python.linting.enabled": true,
"python.linting.pylintArgs": [
"--disable",
"import-error"
],
"python.formatting.provider": "black",
"editor.formatOnPaste": false,
"editor.formatOnSave": true,
"editor.formatOnType": true,
"files.trimTrailingWhitespace": true
}
}
}
2 changes: 1 addition & 1 deletion custom_components/silencescooter/manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"domain": "silencescooter",
"name": "Silence Scooter",
"version": "v0.8",
"version": "v0.8.1",
"documentation": "https://github.com/lorenzo-deluca/homeassistant-silence/",
"issue_tracker": "https://github.com/lorenzo-deluca/homeassistant-silence/issues",
"dependencies": [],
Expand Down
2 changes: 1 addition & 1 deletion custom_components/silencescooter/sensor.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

import homeassistant.helpers.config_validation as cv

__version__ = '0.8'
__version__ = '0.8.1'

_LOGGER = logging.getLogger(__name__)

Expand Down

0 comments on commit 999f6f0

Please sign in to comment.