Skip to content

Commit 99fac04

Browse files
committed
chore: bump version to 4.4.0
1 parent 7b82e2a commit 99fac04

File tree

3 files changed

+56
-3
lines changed

3 files changed

+56
-3
lines changed

CHANGELOG.md

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

88
## [Unreleased]
99

10+
## [4.4.0] - 2025-09-10
11+
12+
### Added
13+
- **MCP Registry Support**
14+
- Add server.json configuration for MCP registry publication
15+
- Add mcp-name field to README for PyPI package validation
16+
- Integrate MCP registry publishing into CI/CD workflow
17+
- Support DNS-based namespace authentication (com.failmode/voicemode)
18+
- Update Makefile to sync server.json version during releases
19+
20+
- **Cloudflare Worker for voicemode.sh**
21+
- Serve install script via custom domain
22+
- Smart user-agent detection for CLI vs browser
23+
- Cached script delivery with fallback
24+
25+
- **Selective Tool Loading**
26+
- Reduce token usage by loading tools on demand
27+
- Implement smart tool filtering based on context
28+
- Add tool loading configuration options
29+
30+
- **Documentation Improvements**
31+
- Complete documentation reorganization
32+
- Add tutorials, guides, and reference sections
33+
- Improve getting-started guide with clear paths
34+
- Add universal installer as primary quick start
35+
- Archive outdated documentation
36+
37+
- **Three Bears Agent Support**
38+
- Add baby-bear, mama-bear, and papa-bear agent configurations
39+
- Integrate with sound fonts for agent-specific audio feedback
40+
41+
### Changed
42+
- Consolidate PyPI and MCP Registry publishing workflows
43+
- Update branch references from 'main' to 'master'
44+
- Improve Cloudflare Worker error handling and caching
45+
- Rename hook to hooks, stdin-receiver to receiver
46+
47+
### Fixed
48+
- Fix broken documentation links after refactor
49+
- Restore minimal claude command group for hook support
50+
- Fix Claude settings.json path configuration
51+
1052
## [4.3.2] - 2025-09-03
1153

54+
### Fixed
55+
- Add missing pyyaml dependency to pyproject.toml
56+
- Remove macOS-only restriction from package
57+
- Add Claude hooks configuration to repository settings
58+
1259
## [4.3.1] - 2025-09-03
1360

61+
### Fixed
62+
- Minor bug fixes and improvements
63+
1464
## [4.3.0] - 2025-09-03
1565

66+
### Added
67+
- Sound fonts with MP3 support and Three Bears sounds integration
68+
1669
## [4.2.0] - 2025-09-03
1770

1871
### Added

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": "4.3.2",
10+
"version": "4.4.0",
1111
"packages": [
1212
{
1313
"registry_type": "pypi",
1414
"registry_base_url": "https://pypi.org",
1515
"identifier": "voice-mode",
16-
"version": "4.3.2",
16+
"version": "4.4.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__ = "4.3.2"
3+
__version__ = "4.4.0"

0 commit comments

Comments
 (0)