Skip to content

Commit

Permalink
Bump version to 0.2.2 and fix bug in serialisation of models
Browse files Browse the repository at this point in the history
  • Loading branch information
trickeydan committed Jul 11, 2021
1 parent 10ea5a6 commit 8bbeed5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion hue2mqtt/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@
"__version__",
]

__version__ = "0.2.1"
__version__ = "0.2.2"
2 changes: 1 addition & 1 deletion hue2mqtt/mqtt/wrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ def publish(

self._client.publish(
str(topic_complete),
payload.json(),
payload.json(by_alias=True),
qos=1,
retain=retain,
)
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "hue2mqtt"
version = "0.2.1"
version = "0.2.2"
description = "Python Hue to MQTT Bridge"
authors = ["Dan Trickey <[email protected]>"]
license = "MIT"
Expand Down

0 comments on commit 8bbeed5

Please sign in to comment.