diff --git a/RELEASE.md b/RELEASE.md index 026c9f5..e07118a 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -1,5 +1,12 @@ # RELEASE NOTES +## v1.13.1 - Cryptography Version + +* PyPI 1.13.1 +* Require pyca/cryptography>=3.1 or fallback to PyCryptodome +* Add `tools/fake-v35-device.py` script to tools +* Allow pyca/cryptography to GCM decrypt without the tag (makes it match PyCryptodome) by @uzlonewolf in https://github.com/jasonacox/tinytuya/pull/424 + ## v1.13.0 - Crypto Library Update * PyPI 1.13.0 diff --git a/tinytuya/core.py b/tinytuya/core.py index 292f754..586b45b 100644 --- a/tinytuya/core.py +++ b/tinytuya/core.py @@ -123,7 +123,7 @@ # Colorama terminal color capability for all platforms init() -version_tuple = (1, 13, 0) +version_tuple = (1, 13, 1) version = __version__ = "%d.%d.%d" % version_tuple __author__ = "jasonacox"