2 Commits
0.9.0 ... main

Author SHA1 Message Date
github-actions[bot]
085c34f232 chore(release): 0.9.1 2026-03-05 21:29:13 +00:00
e8ef578141 fix(message.py): fix error on TELEMETRY msg 2026-03-05 22:28:42 +01:00
4 changed files with 10 additions and 2 deletions

View File

@@ -2,6 +2,12 @@
All notable changes to this project will be documented in this file.
## [0.9.1] - 2026-03-05
### Bug Fixes
- [`e8ef578`](https://gitea.pufereq.pl/judas/judas_protocol/commit/e8ef578141c7f7ea5ee1ee5fb9e9a22a73fd1cc2) **message.py**: fix error on TELEMETRY msg
## [0.9.0] - 2026-03-05
### Features

View File

@@ -4,7 +4,7 @@ build-backend = "uv_build"
[project]
name = "judas_protocol"
version = "0.9.0"
version = "0.9.1"
description = "The judas protocol"
readme = "README.md"
authors = []

View File

@@ -226,6 +226,8 @@ class Message:
match category:
case Category.CONTROL:
action = ControlAction(action_str)
case Category.TELEMETRY:
action = TelemetryAction(action_str)
case _:
raise ValueError(f"Unknown category: {category}")

2
uv.lock generated
View File

@@ -240,7 +240,7 @@ wheels = [
[[package]]
name = "judas-protocol"
version = "0.9.0"
version = "0.9.1"
source = { editable = "." }
[package.dev-dependencies]