diff --git a/RELEASE.md b/RELEASE.md index 4d59017..01ca573 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -1,5 +1,9 @@ # RELEASE NOTES +## v1.15.1 - Scanner Fixes + +* Fix scanner broadcast attempting to bind to the wrong IP address, introduced in v1.15.0 + ## v1.15.0 - Scanner Fixes * Fix force-scanning bug in scanner introduced in last release and add broadcast request feature to help discover Tuya version 3.5 devices by @uzlonewolf in https://github.com/jasonacox/tinytuya/pull/511. diff --git a/requirements.txt b/requirements.txt index 8e4f198..c100dc4 100644 --- a/requirements.txt +++ b/requirements.txt @@ -2,4 +2,4 @@ cryptography>=3.1 # Encryption - AES can also be provided via PyCryptodome or pyaes or pyca/cryptography requests # Used for Setup Wizard - Tuya IoT Platform calls colorama # Makes ANSI escape character sequences work under MS Windows. -#netifaces # Used to get the IP address of the local machine for scanning for devices. +#netifaces # Used to get the IP address of the local machine for scanning for devices, mainly useful for multi-interface machines. diff --git a/tinytuya/core.py b/tinytuya/core.py index 0dd98ca..d03dc23 100644 --- a/tinytuya/core.py +++ b/tinytuya/core.py @@ -123,7 +123,7 @@ # Colorama terminal color capability for all platforms init() -version_tuple = (1, 15, 0) +version_tuple = (1, 15, 1) version = __version__ = "%d.%d.%d" % version_tuple __author__ = "jasonacox"