Desmond-Dong commited on
Commit
b03d17a
·
1 Parent(s): 8a5ee8a

chore: bump version to v0.5.3

Browse files
index.html CHANGED
@@ -97,6 +97,15 @@
97
  <h2>Changelog</h2>
98
  <div class="how-to-use changelog-container">
99
  <div class="changelog-scroll">
 
 
 
 
 
 
 
 
 
100
  <div class="changelog-entry">
101
  <span class="version">v0.5.2</span>
102
  <span class="date">2026-01-09</span>
 
97
  <h2>Changelog</h2>
98
  <div class="how-to-use changelog-container">
99
  <div class="changelog-scroll">
100
+ <div class="changelog-entry">
101
+ <span class="version">v0.5.3</span>
102
+ <span class="date">2026-01-09</span>
103
+ <ul>
104
+ <li>Fix: Continuous conversation now uses conversation_id for context tracking</li>
105
+ <li>Fix: Conversation state properly cleared when conversation ends</li>
106
+ <li>Improve: conversation_id reused within 5-minute timeout (same as ESPHome)</li>
107
+ </ul>
108
+ </div>
109
  <div class="changelog-entry">
110
  <span class="version">v0.5.2</span>
111
  <span class="date">2026-01-09</span>
pyproject.toml CHANGED
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
 
5
  [project]
6
  name = "reachy_mini_ha_voice"
7
- version = "0.5.2"
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.5.3"
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.5.2"
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.5.3"
15
  __author__ = "Desmond Dong"
16
 
17
  # Don't import main module here to avoid runpy warning