diff --git a/CHANGELOG.md b/CHANGELOG.md index e0b86b9..d074e4e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # CHANGELOG.md +## v0.0.6.1 + +Features: + + - Relax websockets dependency to facilitate integration with other platforms + ## v0.0.6 Features: diff --git a/elmax_api/__init__.py b/elmax_api/__init__.py index b0db312..859ce32 100644 --- a/elmax_api/__init__.py +++ b/elmax_api/__init__.py @@ -1,7 +1,7 @@ """Client for the Elmax Cloud services.""" __name__ = "elmax_api" -__version__ = "0.0.6" +__version__ = "0.0.6.1" __license__ = "MIT" __url__ = "https://github.com/albertogeniola/elmax-api" __author__ = "Alberto Geniola" diff --git a/requirements.txt b/requirements.txt index 6ad6504..983cf3c 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ pyjwt>=1.7.1 httpx>=0.18.0 yarl>=1.6.3 -websockets>=14.1 \ No newline at end of file +websockets>=13.0 \ No newline at end of file