Skip to content

Commit

Permalink
bump to version 1.3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
johnneerdael committed Jan 10, 2025
1 parent c9fa1ac commit f6f55d7
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion custom_components/hyperhdr_control/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ async def async_setup_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool:
manufacturer="HyperHDR",
name=f"HyperHDR ({entry.data[CONF_HOST]})",
model="HyperHDR LED Controller",
sw_version="1.3.2",
sw_version="1.3.3",
)

# Set up all platforms
Expand Down
2 changes: 1 addition & 1 deletion custom_components/hyperhdr_control/button.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ def device_info(self) -> DeviceInfo:
manufacturer="HyperHDR",
name=f"HyperHDR ({self._host})",
model="HyperHDR LED Controller",
sw_version="1.3.2",
sw_version="1.3.3",
)

async def async_press(self) -> None:
Expand Down
2 changes: 1 addition & 1 deletion custom_components/hyperhdr_control/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"codeowners": ["@johnneerdael"],
"requirements": ["aiohttp", "zeroconf"],
"iot_class": "local_polling",
"version": "1.3.2",
"version": "1.3.3",
"config_flow": true,
"zeroconf": ["_hyperhdr-http._tcp.local."],
"logo": "https://raw.githubusercontent.com/johnneerdael/hyperhdr_control/main/hyperhdr_control-logo.png"
Expand Down
2 changes: 1 addition & 1 deletion custom_components/hyperhdr_control/number.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ def device_info(self) -> DeviceInfo:
manufacturer="HyperHDR",
name=f"HyperHDR ({self._host})",
model="HyperHDR LED Controller",
sw_version="1.3.2",
sw_version="1.3.3",
)

@property
Expand Down
2 changes: 1 addition & 1 deletion custom_components/hyperhdr_control/switch.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ def device_info(self) -> DeviceInfo:
manufacturer="HyperHDR",
name=f"HyperHDR ({self._host})",
model="HyperHDR LED Controller",
sw_version="1.3.2",
sw_version="1.3.3",
)

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

0 comments on commit f6f55d7

Please sign in to comment.