From bcbaf3a1cdfb4bc094325270682454e04e3a8297 Mon Sep 17 00:00:00 2001 From: Julian Pawlowski Date: Mon, 1 Jun 2026 11:22:45 +0000 Subject: [PATCH] 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. --- hacs.json | 2 +- requirements.txt | 2 +- scripts/setup/bootstrap | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/hacs.json b/hacs.json index 55fc2f7..60dd767 100644 --- a/hacs.json +++ b/hacs.json @@ -1,5 +1,5 @@ { "name": "Tibber Price Information & Ratings", - "homeassistant": "2026.4.0", + "homeassistant": "2026.4.4", "hacs": "2.0.5" } diff --git a/requirements.txt b/requirements.txt index 46cfc05..3f33d0f 100644 --- a/requirements.txt +++ b/requirements.txt @@ -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 diff --git a/scripts/setup/bootstrap b/scripts/setup/bootstrap index 61f4679..7724d25 100755 --- a/scripts/setup/bootstrap +++ b/scripts/setup/bootstrap @@ -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"