chore(bootstrap): update Home Assistant version to 2026.4.4

Updated the default Home Assistant version in the bootstrap script and requirements file to ensure compatibility with the latest features and fixes.

Impact: Users will benefit from improved stability and new features available in Home Assistant 2026.4.4.
This commit is contained in:
Julian Pawlowski 2026-06-01 11:22:45 +00:00
parent 3a44bc8267
commit bcbaf3a1cd
3 changed files with 3 additions and 3 deletions

View file

@ -1,5 +1,5 @@
{
"name": "Tibber Price Information & Ratings",
"homeassistant": "2026.4.0",
"homeassistant": "2026.4.4",
"hacs": "2.0.5"
}

View file

@ -5,4 +5,4 @@ ruff>=0.15.15,<0.16.0
zlib_ng>=1.0.0,<1.1.0
isal>=1.8.0,<1.9.0
# Must match HA_VERSION in scripts/setup/bootstrap exactly (1:1 mapping)
pytest-homeassistant-custom-component==0.13.322
pytest-homeassistant-custom-component==0.13.325

View file

@ -60,7 +60,7 @@ uv pip install --requirement requirements.txt
# HA_VERSION can be overridden from the environment, e.g.:
# HA_VERSION=2026.4.1 script/bootstrap
HA_VERSION=${HA_VERSION:-"2026.4.1"}
HA_VERSION=${HA_VERSION:-"2026.4.4"}
HA_CORE_BASE_URL="https://raw.githubusercontent.com/home-assistant/core/${HA_VERSION}"
HA_TMP_DIR="$HOME/.ha_requirements"