Commit ·
08a2d90
1
Parent(s): cecb01d
chore: correct version numbers - gesture is 0.7.0, current is 0.7.2
Browse files- changelog.json +3 -3
- pyproject.toml +1 -1
- reachy_mini_ha_voice/__init__.py +1 -1
changelog.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
| 1 |
[
|
| 2 |
{
|
| 3 |
-
"version": "0.
|
| 4 |
"date": "2026-01-12",
|
| 5 |
"changes": [
|
| 6 |
"Fix: Remove premature _tts_played reset in RUN_END event",
|
|
@@ -8,7 +8,7 @@
|
|
| 8 |
]
|
| 9 |
},
|
| 10 |
{
|
| 11 |
-
"version": "0.
|
| 12 |
"date": "2026-01-12",
|
| 13 |
"changes": [
|
| 14 |
"Fix: Prevent wake word detection during TTS playback",
|
|
@@ -16,7 +16,7 @@
|
|
| 16 |
]
|
| 17 |
},
|
| 18 |
{
|
| 19 |
-
"version": "0.
|
| 20 |
"date": "2026-01-12",
|
| 21 |
"changes": [
|
| 22 |
"New: Gesture detection using HaGRID ONNX models (18 gesture classes)",
|
|
|
|
| 1 |
[
|
| 2 |
{
|
| 3 |
+
"version": "0.7.2",
|
| 4 |
"date": "2026-01-12",
|
| 5 |
"changes": [
|
| 6 |
"Fix: Remove premature _tts_played reset in RUN_END event",
|
|
|
|
| 8 |
]
|
| 9 |
},
|
| 10 |
{
|
| 11 |
+
"version": "0.7.1",
|
| 12 |
"date": "2026-01-12",
|
| 13 |
"changes": [
|
| 14 |
"Fix: Prevent wake word detection during TTS playback",
|
|
|
|
| 16 |
]
|
| 17 |
},
|
| 18 |
{
|
| 19 |
+
"version": "0.7.0",
|
| 20 |
"date": "2026-01-12",
|
| 21 |
"changes": [
|
| 22 |
"New: Gesture detection using HaGRID ONNX models (18 gesture classes)",
|
pyproject.toml
CHANGED
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
| 4 |
|
| 5 |
[project]
|
| 6 |
name = "reachy_mini_ha_voice"
|
| 7 |
-
version = "0.
|
| 8 |
description = "Home Assistant Voice Assistant for Reachy Mini"
|
| 9 |
readme = "README.md"
|
| 10 |
requires-python = ">=3.10"
|
|
|
|
| 4 |
|
| 5 |
[project]
|
| 6 |
name = "reachy_mini_ha_voice"
|
| 7 |
+
version = "0.7.2"
|
| 8 |
description = "Home Assistant Voice Assistant for Reachy Mini"
|
| 9 |
readme = "README.md"
|
| 10 |
requires-python = ">=3.10"
|
reachy_mini_ha_voice/__init__.py
CHANGED
|
@@ -11,7 +11,7 @@ Key features:
|
|
| 11 |
- Reachy Mini motion control integration
|
| 12 |
"""
|
| 13 |
|
| 14 |
-
__version__ = "0.
|
| 15 |
__author__ = "Desmond Dong"
|
| 16 |
|
| 17 |
# Don't import main module here to avoid runpy warning
|
|
|
|
| 11 |
- Reachy Mini motion control integration
|
| 12 |
"""
|
| 13 |
|
| 14 |
+
__version__ = "0.7.2"
|
| 15 |
__author__ = "Desmond Dong"
|
| 16 |
|
| 17 |
# Don't import main module here to avoid runpy warning
|