Skip to content

Commit

Permalink
Prep for 1.8.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonacox committed Nov 22, 2022
1 parent 1ddca16 commit f5b2cf7
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 1 deletion.
16 changes: 16 additions & 0 deletions RELEASE.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# RELEASE NOTES

## v1.8.0 - Expanded Cloud Functions

* PyPI 1.8.0
* Add AtorchTemperatureController by @Poil in https://github.com/jasonacox/tinytuya/pull/213
* Add new Cloud functions to fetch device logs from TuyaCloud (`getdevicelog(id)`), make generic cloud request with custom URL and params (`cloudrequest(url, ...)`) and fetch connection status (`getconnectstatus(id)`) by @uzlonewolf in https://github.com/jasonacox/tinytuya/pull/219
* Update README for new Cloud functions, and tighter deviceid error checking by @uzlonewolf in https://github.com/jasonacox/tinytuya/pull/220

```python
import tinytuya
import json

c = tinytuya.Cloud()
r = c.getdevicelog( '00112233445566778899' )
print( json.dumps(r, indent=2) )
```

## v1.7.2 - Fix Contrib Devices Bug

* PyPI 1.7.2
Expand Down
2 changes: 1 addition & 1 deletion tinytuya/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@
# Colorama terminal color capability for all platforms
init()

version_tuple = (1, 7, 2)
version_tuple = (1, 8, 0)
version = __version__ = "%d.%d.%d" % version_tuple
__author__ = "jasonacox"

Expand Down

0 comments on commit f5b2cf7

Please sign in to comment.