Skip to content

Commit eb58459

Browse files
committed
Version bump & lint fix
1 parent 153b044 commit eb58459

3 files changed

Lines changed: 4 additions & 2 deletions

File tree

homeway/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<!-- https://developers.home-assistant.io/docs/add-ons/presentation#keeping-a-changelog -->
22
<!-- This is used in the homeway UI to show updates, so keep it up to date. -->
33

4-
## 3.0.5
4+
## 3.0.6
55

66
- 🧠 [Connect Your AI With The New Remote MCP Server for Home Assistant](https://blog.homeway.io/remote-mcp-server-for-home-assistant/?source=addon_changelog)
77
- Works with all major AI agents and assistants, including Claude, Gemini, ChatGPT, Copilot, Cursor, and more!

homeway/config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,4 +58,4 @@ image: ghcr.io/homewayio/homeway/{arch}
5858
# Note when this version number changes, we must make a release to start a docker container build immediately, since HA will start looking for the new version.
5959
# Basically: Make the final commit -> test and check lint actions (if a docker change, push to docker-test to ensure it builds) -> bump the version number -> create GitHub release.
6060
# UPDATE THE CHANGE LOG!
61-
version: 3.0.5
61+
version: 3.0.6

homeway/homeway_linuxhost/ha/filesystem.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -377,6 +377,8 @@ def _GetWriteContentBytes(self, text:Optional[str], base64Data:Optional[str], te
377377
return text.encode(textEncoding)
378378
except LookupError as e:
379379
raise ValueError(f"Unknown text encoding '{textEncoding}'.") from e
380+
if base64Data is None:
381+
raise ValueError("Invalid state: 'Base64Data' is None when it should not be.")
380382
try:
381383
return base64.b64decode(base64Data, validate=True)
382384
except Exception as e:

0 commit comments

Comments
 (0)