Skip to content

Commit

Permalink
v1.11.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonacox committed Mar 5, 2023
1 parent ffcec47 commit 2fcffde
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 3 deletions.
18 changes: 18 additions & 0 deletions RELEASE.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
6 changes: 3 additions & 3 deletions tinytuya/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
"""

Expand Down Expand Up @@ -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"

Expand Down

0 comments on commit 2fcffde

Please sign in to comment.