diff --git a/RELEASE.md b/RELEASE.md index 7c624a1e..ad2ffacb 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -1,5 +1,23 @@ # RELEASE NOTES +## v1.11.0 - Cloud Device Listing + +* PyPI 1.11.0 +* Simplification and cleanup of math functions in core and IRRemoteControlDevice by @gstein in https://github.com/jasonacox/tinytuya/pull/291 +* Rework Cloud device list fetching by @uzlonewolf in https://github.com/jasonacox/tinytuya/pull/289 includes new `tuya-raw.json` (backward compatible). + +Additional data in tuya-raw.json: + +```json + "file": { + "name": "tuya-raw.json", + "description": "Full raw list of Tuya devices.", + "account": "xxxxxxxxxxxxxxxxxxxx", + "date": "2023-03-04T19:50:08.879865", + "tinytuya": "1.11.0" + } +``` + ## v1.10.3 - Cloud Updates * PyPI 1.10.3 diff --git a/tinytuya/core.py b/tinytuya/core.py index 1aebe753..4f0378ab 100644 --- a/tinytuya/core.py +++ b/tinytuya/core.py @@ -47,8 +47,8 @@ The origin of this python module (now abandoned) * LocalTuya https://github.com/rospogrigio/localtuya-homeassistant by rospogrigio Updated pytuya to support devices with Device IDs of 22 characters - * Tuya Protocol 3.4 Support by uzlonewolf - Enhancement to TuyaMessage logic for multi-payload messages and Tuya Protocol 3.4 support + * Tuya Protocol 3.4 and 3.5 Support by uzlonewolf + Enhancement to TuyaMessage logic for multi-payload messages """ @@ -85,7 +85,7 @@ # Colorama terminal color capability for all platforms init() -version_tuple = (1, 10, 3) +version_tuple = (1, 11, 0) version = __version__ = "%d.%d.%d" % version_tuple __author__ = "jasonacox"