diff --git a/custom_components/poolos/const.py b/custom_components/poolos/const.py index 8506ec7..cc84489 100644 --- a/custom_components/poolos/const.py +++ b/custom_components/poolos/const.py @@ -6,7 +6,7 @@ DOMAIN = "poolos" NAME = "PoolOS" -INTEGRATION_VERSION = "0.11.48" +INTEGRATION_VERSION = "0.11.50" CONFIG_ENTRY_VERSION = 2 CONFIG_ENTRY_MINOR_VERSION = 1 diff --git a/custom_components/poolos/manifest.json b/custom_components/poolos/manifest.json index 69a1a9a..226da6f 100644 --- a/custom_components/poolos/manifest.json +++ b/custom_components/poolos/manifest.json @@ -10,9 +10,9 @@ "iot_class": "local_push", "issue_tracker": "https://github.com/davidabuch/poolos/issues", "requirements": [ - "poolos@git+https://github.com/davidabuch/poolos.git@v0.11.48", + "poolos@git+https://github.com/davidabuch/poolos.git@v0.11.50", "pyintellicenter==0.1.20" ], "single_config_entry": true, - "version": "0.11.48" + "version": "0.11.50" } diff --git a/tests/test_home_assistant_behavioral_inference.py b/tests/test_home_assistant_behavioral_inference.py index bad6525..78aa33d 100644 --- a/tests/test_home_assistant_behavioral_inference.py +++ b/tests/test_home_assistant_behavioral_inference.py @@ -18,9 +18,9 @@ def test_113c_core_and_adr_exist() -> None: def test_manifest_advances_to_080_and_matching_core_tag() -> None: manifest = json.loads((COMPONENT / "manifest.json").read_text(encoding="utf-8")) - assert manifest["version"] == "0.11.48" + assert manifest["version"] == "0.11.50" assert manifest["requirements"] == [ - "poolos@git+https://github.com/davidabuch/poolos.git@v0.11.48", + "poolos@git+https://github.com/davidabuch/poolos.git@v0.11.50", "pyintellicenter==0.1.20", ] assert manifest["iot_class"] == "local_push" diff --git a/tests/test_home_assistant_control_center.py b/tests/test_home_assistant_control_center.py index 81fed4c..fb4d77b 100644 --- a/tests/test_home_assistant_control_center.py +++ b/tests/test_home_assistant_control_center.py @@ -58,9 +58,9 @@ def test_integration_forwards_only_control_center_platforms() -> None: def test_manifest_advances_control_center_version() -> None: manifest = json.loads((COMPONENT / "manifest.json").read_text(encoding="utf-8")) - assert manifest["version"] == "0.11.48" + assert manifest["version"] == "0.11.50" assert manifest["requirements"] == [ - "poolos@git+https://github.com/davidabuch/poolos.git@v0.11.48", + "poolos@git+https://github.com/davidabuch/poolos.git@v0.11.50", "pyintellicenter==0.1.20", ] diff --git a/tests/test_home_assistant_daily_retrospective.py b/tests/test_home_assistant_daily_retrospective.py index 76c20e1..7240b01 100644 --- a/tests/test_home_assistant_daily_retrospective.py +++ b/tests/test_home_assistant_daily_retrospective.py @@ -17,9 +17,9 @@ def test_113d_core_tests_and_adr_exist() -> None: def test_manifest_advances_to_090_and_matching_core_tag() -> None: manifest = json.loads((COMPONENT / "manifest.json").read_text(encoding="utf-8")) - assert manifest["version"] == "0.11.48" + assert manifest["version"] == "0.11.50" assert manifest["requirements"] == [ - "poolos@git+https://github.com/davidabuch/poolos.git@v0.11.48", + "poolos@git+https://github.com/davidabuch/poolos.git@v0.11.50", "pyintellicenter==0.1.20", ] assert manifest["iot_class"] == "local_push" diff --git a/tests/test_home_assistant_hacs_commissioning_readiness.py b/tests/test_home_assistant_hacs_commissioning_readiness.py index baf236f..b039019 100644 --- a/tests/test_home_assistant_hacs_commissioning_readiness.py +++ b/tests/test_home_assistant_hacs_commissioning_readiness.py @@ -8,8 +8,8 @@ ROOT = Path(__file__).resolve().parents[1] COMPONENT = ROOT / "custom_components" / "poolos" -EXPECTED_VERSION = "0.11.48" -EXPECTED_CORE_REQUIREMENT = "poolos@git+https://github.com/davidabuch/poolos.git@v0.11.48" +EXPECTED_VERSION = "0.11.50" +EXPECTED_CORE_REQUIREMENT = "poolos@git+https://github.com/davidabuch/poolos.git@v0.11.50" EXPECTED_PROTOCOL_REQUIREMENT = "pyintellicenter==0.1.20" diff --git a/tests/test_home_assistant_high_fidelity_observation.py b/tests/test_home_assistant_high_fidelity_observation.py index 902d037..c346149 100644 --- a/tests/test_home_assistant_high_fidelity_observation.py +++ b/tests/test_home_assistant_high_fidelity_observation.py @@ -12,9 +12,9 @@ def test_114a_version_and_adr() -> None: manifest = json.loads((COMPONENT / "manifest.json").read_text(encoding="utf-8")) - assert manifest["version"] == "0.11.48" + assert manifest["version"] == "0.11.50" assert manifest["requirements"] == [ - "poolos@git+https://github.com/davidabuch/poolos.git@v0.11.48", + "poolos@git+https://github.com/davidabuch/poolos.git@v0.11.50", "pyintellicenter==0.1.20", ] assert (ROOT / "docs" / "adr" / "ADR-087-high-fidelity-event-driven-observation.md").is_file() diff --git a/tests/test_home_assistant_integration_skeleton.py b/tests/test_home_assistant_integration_skeleton.py index 64ebc11..d4a4c85 100644 --- a/tests/test_home_assistant_integration_skeleton.py +++ b/tests/test_home_assistant_integration_skeleton.py @@ -64,10 +64,10 @@ def test_manifest_declares_safe_single_entry_config_flow() -> None: assert manifest["config_flow"] is True assert manifest["single_config_entry"] is True assert manifest["requirements"] == [ - "poolos@git+https://github.com/davidabuch/poolos.git@v0.11.48", + "poolos@git+https://github.com/davidabuch/poolos.git@v0.11.50", "pyintellicenter==0.1.20", ] - assert manifest["version"] == "0.11.48" + assert manifest["version"] == "0.11.50" def test_custom_integration_uses_runtime_english_translation() -> None: diff --git a/tests/test_home_assistant_local_commissioning_package.py b/tests/test_home_assistant_local_commissioning_package.py index 2225723..7ff2a23 100644 --- a/tests/test_home_assistant_local_commissioning_package.py +++ b/tests/test_home_assistant_local_commissioning_package.py @@ -23,7 +23,7 @@ def test_local_vendor_bootstrap_runs_before_coordinator_import() -> None: def test_source_manifest_remains_release_pinned_for_future_distribution() -> None: manifest = json.loads((COMPONENT / "manifest.json").read_text(encoding="utf-8")) assert manifest["requirements"] == [ - "poolos@git+https://github.com/davidabuch/poolos.git@v0.11.48", + "poolos@git+https://github.com/davidabuch/poolos.git@v0.11.50", "pyintellicenter==0.1.20", ] @@ -46,7 +46,7 @@ def test_local_builder_produces_self_contained_custom_component(tmp_path: Path) assert "custom_components/poolos/LOCAL_COMMISSIONING.txt" in names manifest = json.loads(archive.read("custom_components/poolos/manifest.json")) assert manifest["requirements"] == ["pyintellicenter==0.1.20"] - assert manifest["version"] == "0.11.48" + assert manifest["version"] == "0.11.50" assert not any("__pycache__" in name for name in names) assert not any(name.endswith((".pyc", ".pyo", ".DS_Store")) for name in names) assert not any("/.git/" in f"/{name}" or "/.venv/" in f"/{name}" for name in names) diff --git a/tests/test_home_assistant_observation_bridge_commissioning.py b/tests/test_home_assistant_observation_bridge_commissioning.py index 2e39234..dd877f3 100644 --- a/tests/test_home_assistant_observation_bridge_commissioning.py +++ b/tests/test_home_assistant_observation_bridge_commissioning.py @@ -22,9 +22,9 @@ def test_all_component_python_modules_parse() -> None: def test_manifest_advances_observation_bridge_version() -> None: manifest = json.loads((COMPONENT / "manifest.json").read_text(encoding="utf-8")) - assert manifest["version"] == "0.11.48" + assert manifest["version"] == "0.11.50" assert manifest["requirements"] == [ - "poolos@git+https://github.com/davidabuch/poolos.git@v0.11.48", + "poolos@git+https://github.com/davidabuch/poolos.git@v0.11.50", "pyintellicenter==0.1.20", ] assert manifest["single_config_entry"] is True diff --git a/tests/test_home_assistant_persistent_observation_recorder.py b/tests/test_home_assistant_persistent_observation_recorder.py index 098a28b..d72d6c4 100644 --- a/tests/test_home_assistant_persistent_observation_recorder.py +++ b/tests/test_home_assistant_persistent_observation_recorder.py @@ -18,9 +18,9 @@ def test_113b_files_and_adr_exist() -> None: def test_manifest_advances_to_070_and_matching_core_tag() -> None: manifest = json.loads((COMPONENT / "manifest.json").read_text(encoding="utf-8")) - assert manifest["version"] == "0.11.48" + assert manifest["version"] == "0.11.50" assert manifest["requirements"] == [ - "poolos@git+https://github.com/davidabuch/poolos.git@v0.11.48", + "poolos@git+https://github.com/davidabuch/poolos.git@v0.11.50", "pyintellicenter==0.1.20", ] assert manifest["iot_class"] == "local_push" diff --git a/tests/test_home_assistant_shadow_runtime_commissioning.py b/tests/test_home_assistant_shadow_runtime_commissioning.py index a2bef6e..7adc1e8 100644 --- a/tests/test_home_assistant_shadow_runtime_commissioning.py +++ b/tests/test_home_assistant_shadow_runtime_commissioning.py @@ -23,9 +23,9 @@ def test_component_modules_parse() -> None: def test_manifest_advances_shadow_runtime_version() -> None: manifest = json.loads((COMPONENT / "manifest.json").read_text(encoding="utf-8")) - assert manifest["version"] == "0.11.48" + assert manifest["version"] == "0.11.50" assert manifest["requirements"] == [ - "poolos@git+https://github.com/davidabuch/poolos.git@v0.11.48", + "poolos@git+https://github.com/davidabuch/poolos.git@v0.11.50", "pyintellicenter==0.1.20", ]