Merge pull request 'chore(release): 0.4.4' (#9) from release/0.4.4 into main

Reviewed-on: #9
This commit is contained in:
2026-03-05 20:06:22 +00:00
2 changed files with 6 additions and 4 deletions

View File

@@ -107,7 +107,7 @@ class Connector:
def send_hello(self) -> None:
"""Send a HELLO message to the server."""
self.logger.debug("[*] Sending HELLO message...")
hello_message: Message = Message.hello(self.mac_address)
hello_message: Message = Message.Control.hello(self.mac_address)
self.send(hello_message)
def close(self) -> None:
@@ -218,7 +218,9 @@ class Connector:
self.on_message(message)
if message.ack_required:
ack_message: Message = Message.ack(message.id)
ack_message: Message = Message.Control.ack(
message.id
)
self.send(ack_message)
self._send_outbound()
except Exception as e:

4
uv.lock generated
View File

@@ -318,8 +318,8 @@ test = [
[[package]]
name = "judas-protocol"
version = "0.6.0"
source = { git = "https://gitea.pufereq.pl/judas/judas_protocol.git#d16c1914ba343aed300f1c5fae0201370c3274de" }
version = "0.8.0"
source = { git = "https://gitea.pufereq.pl/judas/judas_protocol.git#a805ccf38edffadc1b8c8b276e60758c86516cd3" }
[[package]]
name = "markdown-it-py"