Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion custom_components/poolos/const.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
4 changes: 2 additions & 2 deletions custom_components/poolos/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
4 changes: 2 additions & 2 deletions tests/test_home_assistant_behavioral_inference.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
4 changes: 2 additions & 2 deletions tests/test_home_assistant_control_center.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
]

Expand Down
4 changes: 2 additions & 2 deletions tests/test_home_assistant_daily_retrospective.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
4 changes: 2 additions & 2 deletions tests/test_home_assistant_hacs_commissioning_readiness.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"


Expand Down
4 changes: 2 additions & 2 deletions tests/test_home_assistant_high_fidelity_observation.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down
4 changes: 2 additions & 2 deletions tests/test_home_assistant_integration_skeleton.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
4 changes: 2 additions & 2 deletions tests/test_home_assistant_local_commissioning_package.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
]

Expand All @@ -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)
Expand Down
4 changes: 2 additions & 2 deletions tests/test_home_assistant_observation_bridge_commissioning.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions tests/test_home_assistant_persistent_observation_recorder.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
4 changes: 2 additions & 2 deletions tests/test_home_assistant_shadow_runtime_commissioning.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
]

Expand Down
Loading