generated from pufereq/python-template
Compare commits
3 Commits
4bba344e8a
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
085c34f232 | ||
|
e8ef578141
|
|||
|
|
3d5a1e95da |
13
CHANGELOG.md
13
CHANGELOG.md
@@ -2,6 +2,19 @@
|
||||
|
||||
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
|
||||
|
||||
- [`4bba344`](https://gitea.pufereq.pl/judas/judas_protocol/commit/4bba344e8abcd64947c06b371ae84ca8f0591a9c) **message.py**: add `Message.Telemetry` factory class
|
||||
- [`29bf802`](https://gitea.pufereq.pl/judas/judas_protocol/commit/29bf80235631f069be519e3e3ac0772c9a9d44db) **types.py**: add `TELEMETRY` category
|
||||
|
||||
## [0.8.0] - 2026-03-03
|
||||
|
||||
### Features
|
||||
|
||||
@@ -4,7 +4,7 @@ build-backend = "uv_build"
|
||||
|
||||
[project]
|
||||
name = "judas_protocol"
|
||||
version = "0.8.0"
|
||||
version = "0.9.1"
|
||||
description = "The judas protocol"
|
||||
readme = "README.md"
|
||||
authors = []
|
||||
|
||||
@@ -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}")
|
||||
|
||||
|
||||
Reference in New Issue
Block a user