Skip to content

Commit 7ef2f87

Browse files
committed
Version 4.25.1
Fix RVC training runtime shim packaging Implementation details: - Move the RVC training spawn shim under the engine training module instead of a repo-root package - Make engines.rvc package import lazy to avoid Windows multiprocessing spawn side effects - Track the runtime shim bridge files explicitly despite the broad lib ignore rule
1 parent 775cbd0 commit 7ef2f87

4 files changed

Lines changed: 17 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,20 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [4.25.1] - 2026-04-05
9+
10+
### Added
11+
12+
- Move internal RVC training shim files into the engine package where they belong
13+
14+
### Changed
15+
16+
- Improve Windows RVC training stability without changing the user workflow
17+
18+
### Fixed
19+
20+
- Fix RVC training resume/runtime packaging on Windows
21+
- Fix RVC training child processes failing after the runtime shim cleanup
822
## [4.25.0] - 2026-04-05
923

1024
### Added

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
[![Dynamic TOML Badge][version-shield]][version-url]
88
[![Ko-Fi](https://img.shields.io/badge/Ko--fi-F16061?style=for-the-badge&logo=ko-fi&logoColor=white)](https://ko-fi.com/diogogo)
99

10-
# TTS Audio Suite v4.25.0
10+
# TTS Audio Suite v4.25.1
1111

1212
[![ko-fi](https://ko-fi.com/img/githubbutton_sm.svg)](https://ko-fi.com/diogogo)
1313

nodes.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
pass
1212

1313
# Version and constants
14-
VERSION = "4.25.0"
14+
VERSION = "4.25.1"
1515
IS_DEV = False # Set to False for release builds
1616
VERSION_DISPLAY = f"v{VERSION}" + (" (dev)" if IS_DEV else "")
1717
SEPARATOR = "=" * 70

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[project]
22
name = "tts_audio_suite"
33
description = "TTS Audio Suite - Universal multi-engine TTS extension for ComfyUI with unified architecture supporting IndexTTS-2, ChatterBox, Chatterbox Multilingual TTS (Official 23-Lang), F5-TTS, Higgs Audio 2, VibeVoice, and RVC engines. It has character voice management, SRT subtitle TTS support, and audio processing capabilities."
4-
version = "4.25.0"
4+
version = "4.25.1"
55
license = {file = "LICENSE"}
66

77
[project.urls]

0 commit comments

Comments
 (0)