diff --git a/RELEASE.md b/RELEASE.md index 3c59b32..9e81e55 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -1,5 +1,9 @@ # RELEASE NOTES +## v1.14.1 - Scanner Fixes + +* Fix force-scanning bug in scanner introduced in last release by @uzlonewolf in https://github.com/jasonacox/tinytuya/pull/511. + ## v1.14.0 - Command Line Updates * PyPI 1.14.0 rewrite of main to use argparse and add additional options by @uzlonewolf in https://github.com/jasonacox/tinytuya/pull/503 diff --git a/tinytuya/core.py b/tinytuya/core.py index f94969a..d7a8cbb 100644 --- a/tinytuya/core.py +++ b/tinytuya/core.py @@ -123,7 +123,7 @@ # Colorama terminal color capability for all platforms init() -version_tuple = (1, 14, 0) +version_tuple = (1, 14, 1) version = __version__ = "%d.%d.%d" % version_tuple __author__ = "jasonacox"