Skip to content

Commit

Permalink
Preparing release 0.12.3
Browse files Browse the repository at this point in the history
  • Loading branch information
loopj committed Sep 29, 2024
1 parent 5df998d commit 14eaae2
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 8 deletions.
6 changes: 3 additions & 3 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ repos:
hooks:
- id: mypy
additional_dependencies:
- aiovantage==0.14.0
- aiovantage==0.15.0
- voluptuous-stubs==0.1.1
- homeassistant-stubs==2024.6.4
- homeassistant-stubs==2024.9.2
args: []

- repo: https://github.com/thlorenz/doctoc
Expand All @@ -27,4 +27,4 @@ repos:
args: ["--github", "--notitle", "--maxlevel=2", "--update-only"]

default_language_version:
python: python3.12
python: python3.12
5 changes: 4 additions & 1 deletion custom_components/vantage/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
Platform,
)
from homeassistant.core import HomeAssistant
from homeassistant.util.ssl import get_default_no_verify_context

from .const import DOMAIN
from .device import async_setup_devices
Expand Down Expand Up @@ -53,7 +54,9 @@ async def async_setup_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool:
entry.data[CONF_HOST],
entry.data.get(CONF_USERNAME),
entry.data.get(CONF_PASSWORD),
use_ssl=entry.data.get(CONF_SSL, True),
ssl=(
get_default_no_verify_context() if entry.data.get(CONF_SSL, True) else False
),
)

# Store the client in the hass data store
Expand Down
4 changes: 2 additions & 2 deletions custom_components/vantage/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@
"custom_components.vantage"
],
"requirements": [
"aiovantage==0.14.0"
"aiovantage==0.15.0"
],
"version": "0.12.2",
"version": "0.12.3",
"zeroconf": [
{
"type": "_secure_aci._tcp.local.",
Expand Down
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# Home assistant
homeassistant==2024.6.4
homeassistant==2024.9.2
colorlog==6.8.2

# Use a specific version of aiovantage
aiovantage==0.14.0
aiovantage==0.15.0

# Use a local version of aiovantage
# -e ../aiovantage
Expand Down

0 comments on commit 14eaae2

Please sign in to comment.