From 3911a9c62e65cb7614bb56d2803382fad65d515a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pierre=20St=C3=A5hl?= Date: Fri, 27 Oct 2023 19:29:32 +0200 Subject: [PATCH] Release 0.14.4 --- CHANGES.md | 27 +++++++++++++++++++++++++++ pyatv/const.py | 2 +- 2 files changed, 28 insertions(+), 1 deletion(-) diff --git a/CHANGES.md b/CHANGES.md index 9f6cfebbe..b0fba7f2c 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,32 @@ # CHANGES +## 0.14.4 Patty (2023-10-27) + +This release contains a fix when running with python 3.11 +or later, mainly when calling atvscript. Thanks @maxileith! + +**Changes:** + +*Other:* + +``` +cc0e4a2 Wrap coroutines passed to asyncio.wait with create_tasks asyncio.wait does not support passing coroutines since python 3.11 +d8c6b4d cq: New attempt with token +e611672 cq: New token for auto-merge +b47ddbf cq: Update auto-merge token +e7f880a cq: Try to fix auto-merge +``` + +**All changes:** + +``` +cc0e4a2 Wrap coroutines passed to asyncio.wait with create_tasks asyncio.wait does not support passing coroutines since python 3.11 +d8c6b4d cq: New attempt with token +e611672 cq: New token for auto-merge +b47ddbf cq: Update auto-merge token +e7f880a cq: Try to fix auto-merge +``` + ## 0.14.3 Otto (2023-10-23) Due to Home Assistant being stuck at pydantic v1 at the moment, diff --git a/pyatv/const.py b/pyatv/const.py index 908080bca..a51381293 100644 --- a/pyatv/const.py +++ b/pyatv/const.py @@ -5,7 +5,7 @@ MAJOR_VERSION = "0" MINOR_VERSION = "14" -PATCH_VERSION = "3" +PATCH_VERSION = "4" __short_version__ = f"{MAJOR_VERSION}.{MINOR_VERSION}" __version__ = f"{__short_version__}.{PATCH_VERSION}"