Skip to content

Commit f6f55d7

Browse files
committed
bump to version 1.3.3
1 parent c9fa1ac commit f6f55d7

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

custom_components/hyperhdr_control/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ async def async_setup_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool:
3232
manufacturer="HyperHDR",
3333
name=f"HyperHDR ({entry.data[CONF_HOST]})",
3434
model="HyperHDR LED Controller",
35-
sw_version="1.3.2",
35+
sw_version="1.3.3",
3636
)
3737

3838
# Set up all platforms

custom_components/hyperhdr_control/button.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ def device_info(self) -> DeviceInfo:
5353
manufacturer="HyperHDR",
5454
name=f"HyperHDR ({self._host})",
5555
model="HyperHDR LED Controller",
56-
sw_version="1.3.2",
56+
sw_version="1.3.3",
5757
)
5858

5959
async def async_press(self) -> None:

custom_components/hyperhdr_control/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"codeowners": ["@johnneerdael"],
88
"requirements": ["aiohttp", "zeroconf"],
99
"iot_class": "local_polling",
10-
"version": "1.3.2",
10+
"version": "1.3.3",
1111
"config_flow": true,
1212
"zeroconf": ["_hyperhdr-http._tcp.local."],
1313
"logo": "https://raw.githubusercontent.com/johnneerdael/hyperhdr_control/main/hyperhdr_control-logo.png"

custom_components/hyperhdr_control/number.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ def device_info(self) -> DeviceInfo:
6565
manufacturer="HyperHDR",
6666
name=f"HyperHDR ({self._host})",
6767
model="HyperHDR LED Controller",
68-
sw_version="1.3.2",
68+
sw_version="1.3.3",
6969
)
7070

7171
@property

custom_components/hyperhdr_control/switch.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ def device_info(self) -> DeviceInfo:
5858
manufacturer="HyperHDR",
5959
name=f"HyperHDR ({self._host})",
6060
model="HyperHDR LED Controller",
61-
sw_version="1.3.2",
61+
sw_version="1.3.3",
6262
)
6363

6464
async def async_turn_on(self, **kwargs: Any) -> None:

0 commit comments

Comments
 (0)