Skip to content

Commit 2fcffde

Browse files
committed
v1.11.0
1 parent ffcec47 commit 2fcffde

File tree

2 files changed

+21
-3
lines changed

2 files changed

+21
-3
lines changed

RELEASE.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,23 @@
11
# RELEASE NOTES
22

3+
## v1.11.0 - Cloud Device Listing
4+
5+
* PyPI 1.11.0
6+
* Simplification and cleanup of math functions in core and IRRemoteControlDevice by @gstein in https://github.com/jasonacox/tinytuya/pull/291
7+
* Rework Cloud device list fetching by @uzlonewolf in https://github.com/jasonacox/tinytuya/pull/289 includes new `tuya-raw.json` (backward compatible).
8+
9+
Additional data in tuya-raw.json:
10+
11+
```json
12+
"file": {
13+
"name": "tuya-raw.json",
14+
"description": "Full raw list of Tuya devices.",
15+
"account": "xxxxxxxxxxxxxxxxxxxx",
16+
"date": "2023-03-04T19:50:08.879865",
17+
"tinytuya": "1.11.0"
18+
}
19+
```
20+
321
## v1.10.3 - Cloud Updates
422

523
* PyPI 1.10.3

tinytuya/core.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,8 @@
4747
The origin of this python module (now abandoned)
4848
* LocalTuya https://github.com/rospogrigio/localtuya-homeassistant by rospogrigio
4949
Updated pytuya to support devices with Device IDs of 22 characters
50-
* Tuya Protocol 3.4 Support by uzlonewolf
51-
Enhancement to TuyaMessage logic for multi-payload messages and Tuya Protocol 3.4 support
50+
* Tuya Protocol 3.4 and 3.5 Support by uzlonewolf
51+
Enhancement to TuyaMessage logic for multi-payload messages
5252
5353
"""
5454

@@ -85,7 +85,7 @@
8585
# Colorama terminal color capability for all platforms
8686
init()
8787

88-
version_tuple = (1, 10, 3)
88+
version_tuple = (1, 11, 0)
8989
version = __version__ = "%d.%d.%d" % version_tuple
9090
__author__ = "jasonacox"
9191

0 commit comments

Comments
 (0)