Skip to content

Commit d011407

Browse files
committed
chore: bump version to 8.2.0 for all packages
1 parent 5f8ea08 commit d011407

5 files changed

Lines changed: 24 additions & 5 deletions

File tree

.claude-plugin/plugin.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "voicemode",
33
"description": "Voice conversations with Claude Code using local speech-to-text and text-to-speech",
4-
"version": "8.1.0p1",
4+
"version": "8.2.0p0",
55
"author": {
66
"name": "Mike Bailey",
77
"email": "mike@failmode.com"

CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,25 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [8.2.0] - 2026-02-14
11+
12+
### Added
13+
14+
- **STT Prompt for Vocabulary Biasing** - Set `VOICEMODE_STT_PROMPT` to hint Whisper on frequently misrecognized words (e.g., proper nouns, technical terms)
15+
- **Claude Code Hooks CLI** (VM-618) - `voicemode claude hooks add/remove/status` to manage soundfont hooks without manual JSON editing
16+
- **VoiceMode Connect Device Visibility** (VM-633) - WebSocket connection shows your device on the voicemode.dev dashboard with online/offline status
17+
- **Latest Audio Symlinks** (VM-614) - `~/.voicemode/audio/latest-tts.*` and `latest-stt.*` symlinks for quick access to most recent recordings
18+
- **VoiceMode Marketplace** - `claude install voicemode@voicemode` plugin distribution via marketplace
19+
- **VoiceMode Connect Skill** (VM-595) - Bundled skill and documentation for remote voice via mobile/web clients
20+
21+
### Fixed
22+
23+
- **Soundfonts silently disabled for all users** - Hook receiver returned false when `VOICEMODE_SOUNDFONTS_ENABLED` was commented out (the default) instead of falling through to enabled
24+
- **Whisper CoreML hang on M1 Max** (VM-640) - Startup timeout (120s) with auto-fallback to Metal-only when CoreML compilation hangs on incompatible hardware
25+
- **webrtcvad broken with setuptools>=81** - Switched to `webrtcvad-wheels` fork which uses `importlib.metadata` instead of removed `pkg_resources`
26+
- **Hook receiver not installed** (VM-621) - `voicemode claude hooks add` now installs the bash hook receiver and symlinks it correctly
27+
- **Connect auto-enabled by default** (VM-633) - Changed `CONNECT_AUTO_ENABLED` to default false so devices don't appear on dashboard without opt-in
28+
1029
## [8.1.0] - 2026-02-02
1130

1231
### Added

installer/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "voice-mode-install"
7-
version = "8.1.0"
7+
version = "8.2.0"
88
description = "Installer for VoiceMode - handles system dependencies and installation"
99
readme = "README.md"
1010
requires-python = ">=3.10"

server.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@
77
"url": "https://github.com/mbailey/voicemode",
88
"source": "github"
99
},
10-
"version": "8.1.0",
10+
"version": "8.2.0",
1111
"packages": [
1212
{
1313
"registry_type": "pypi",
1414
"registry_base_url": "https://pypi.org",
1515
"identifier": "voice-mode",
16-
"version": "8.1.0",
16+
"version": "8.2.0",
1717
"transport": {
1818
"type": "stdio"
1919
},

voice_mode/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# This file is automatically updated by 'make release'
22
# Do not edit manually
3-
__version__ = "8.1.0"
3+
__version__ = "8.2.0"

0 commit comments

Comments
 (0)