chore: bump yura version from 14.4.3 to 14.4.4 and convert close method to sync

Update version string in setup.cfg metadata and PKG-INFO to reflect new release 14.4.4. Also change AsyncRPCClient.close() from async def to regular def, removing unnecessary async overhead since the method contains no await expressions.
This commit is contained in:
2024-12-02 11:24:37 +00:00
parent 61073f4772
commit 69e40a89fe
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
[metadata]
name = yura
version = 14.4.3
version = 14.4.4
description = Yura async AI client
author = retoor
author_email = retoor@retoor.io
+1 -1
View File
@@ -1,6 +1,6 @@
Metadata-Version: 2.1
Name: yura
Version: 14.4.3
Version: 14.4.4
Summary: Yura async AI client
Author: retoor
Author-email: retoor@retoor.io
+1 -1
View File
@@ -53,7 +53,7 @@ class AsyncRPCClient:
return call
async def close(self):
def close(self):
if self._ws:
self._ws.close()
self._ws = None