Skip to content

Commit

Permalink
v1.7.2 - Fix Contrib Devices Bug
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonacox committed Oct 31, 2022
1 parent 5e3f535 commit 0e989ca
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 2 deletions.
8 changes: 8 additions & 0 deletions RELEASE.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# RELEASE NOTES

## v1.7.2 - Fix Contrib Devices Bug

* PyPI 1.7.2
* Restore reference to 'self' in __init__() functions by @uzlonewolf in https://github.com/jasonacox/tinytuya/pull/207
* Misc updates to find_device(), wizard, and repr(device) by @uzlonewolf in https://github.com/jasonacox/tinytuya/pull/196
* Added socketRetryDelay as parameter instead of fixed value = 5. by @erathaowl in https://github.com/jasonacox/tinytuya/pull/199


## v1.7.1 - Auto-IP Detection Enhancement

* PyPI 1.7.1
Expand Down
5 changes: 4 additions & 1 deletion testcontrib.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,12 @@
from tinytuya import Contrib

print("TinyTuya (Contrib Import Test) [%s]\n" % tinytuya.__version__)
print(" Contrib Devices Loaded: ")

print(" Contrib Devices Loaded: ")
for i in Contrib.DeviceTypes:
print(" * %s" % i)

print(" Test ThermostatDevice init(): ")
d = Contrib.ThermostatDevice( 'abcdefghijklmnop123456', '172.28.321.475', '1234567890123abc' )

exit()
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, 1)
version_tuple = (1, 7, 2)
version = __version__ = "%d.%d.%d" % version_tuple
__author__ = "jasonacox"

Expand Down

0 comments on commit 0e989ca

Please sign in to comment.