Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## [5.3.2]
- feat: version number

## [5.3.1]
- fix: [SinricProBlinds - Alexa: Missing callback function: adjustRangeValue](https://github.com/sinricpro/python-sdk/issues/85)

## [5.2.1]
- fix: [WebSocket pong timeout - connection appears dead - Reconnection loop annoys server](https://github.com/sinricpro/python-sdk/issues/83)
- feat: only after 3 consecutive misses does it close the connection
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "sinricpro"
version = "5.3.1"
version = "5.3.2"
description = "Official SinricPro SDK for Python - Control IoT devices with Alexa and Google Home"
authors = [{name = "SinricPro", email = "support@sinric.com"}]
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion sinricpro/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
This file is part of the SinricPro Python SDK (https://github.com/sinricpro/)
"""

__version__ = "5.2.1"
__version__ = "5.3.2"

from sinricpro.core.sinric_pro import SinricPro, SinricProConfig
from sinricpro.core.sinric_pro_device import SinricProDevice
Expand Down
Loading