Skip to content

Commit b4cc215

Browse files
committed
Release v0.4.2
1 parent 4fa44e0 commit b4cc215

4 files changed

Lines changed: 7 additions & 7 deletions

File tree

custom_components/mitsubishi/manifest.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"pymitsubishi"
1414
],
1515
"requirements": [
16-
"pymitsubishi==0.4.1"
16+
"pymitsubishi==0.4.2"
1717
],
18-
"version": "0.4.1"
18+
"version": "0.4.2"
1919
}

deploy.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -240,9 +240,9 @@ try:
240240
has_pymitsubishi = any('pymitsubishi' in req.lower() for req in requirements)
241241
242242
if not has_pymitsubishi:
243-
requirements.append('pymitsubishi>=0.4.1')
243+
requirements.append('pymitsubishi>=0.4.2')
244244
manifest['requirements'] = requirements
245-
print(" Added pymitsubishi>=0.4.1 to requirements")
245+
print(" Added pymitsubishi>=0.4.2 to requirements")
246246
247247
# Remove dev mode marker if present
248248
if '_dev_mode' in manifest:
@@ -330,7 +330,7 @@ if [ "$MODE" = "dev" ]; then
330330
echo -e "${MAGENTA}Using bundled pymitsubishi library from: $PYMITSUBISHI_PATH${NC}"
331331
else
332332
echo -e "${GREEN}=== PRODUCTION Build Complete ===${NC}"
333-
echo -e "${BLUE}Using PyPI pymitsubishi (version >=0.4.1)${NC}"
333+
echo -e "${BLUE}Using PyPI pymitsubishi (version >=0.4.2)${NC}"
334334
fi
335335

336336
if [ "$SKIP_DEPLOY" = false ]; then

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Main dependency
2-
pymitsubishi>=0.4.1
2+
pymitsubishi>=0.4.2
33

44
# Development dependencies
55
ruff

tests/test_climate.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ async def test_current_temperature(hass, mock_coordinator, mock_config_entry):
5151
climate = MitsubishiClimate(mock_coordinator, mock_config_entry)
5252

5353
# Test with temperature data
54-
assert climate.current_temperature == 24.0
54+
assert climate.current_temperature == 24.5
5555

5656
# Test without temperature data
5757
mock_coordinator.data = {}

0 commit comments

Comments
 (0)