Skip to content

Commit 37215f0

Browse files
committed
bump version number to 3.3.4
1 parent d676a33 commit 37215f0

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ ttsfm = "ttsfm.cli:main"
8686
version_scheme = "no-guess-dev"
8787
local_scheme = "no-local-version"
8888

89-
fallback_version = "3.3.3"
89+
fallback_version = "3.3.4"
9090
[tool.setuptools]
9191
packages = ["ttsfm"]
9292

ttsfm-web/app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -794,7 +794,7 @@ def health_check():
794794
"""Simple health check endpoint."""
795795
return jsonify({
796796
"status": "healthy",
797-
"package_version": "3.3.3",
797+
"package_version": "3.3.4",
798798
"timestamp": datetime.now().isoformat()
799799
})
800800

ttsfm-web/templates/base.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@
8888
<a class="navbar-brand" href="{{ url_for('index') }}">
8989
<i class="fas fa-microphone-alt me-2"></i>
9090
<span class="fw-bold">TTSFM</span>
91-
<span class="badge bg-primary ms-2 small">v3.3.3</span>
91+
<span class="badge bg-primary ms-2 small">v3.3.4</span>
9292
</a>
9393

9494
<button class="navbar-toggler border-0" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
@@ -159,7 +159,7 @@
159159
<div class="d-flex align-items-center">
160160
<i class="fas fa-microphone-alt me-2 text-primary"></i>
161161
<strong class="text-dark">TTSFM</strong>
162-
<span class="ms-2 text-muted">v3.3.3</span>
162+
<span class="ms-2 text-muted">v3.3.4</span>
163163
</div>
164164
</div>
165165
<div class="col-md-6 text-md-end">

ttsfm-web/templates/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ <h5 class="fw-bold">{{ _('home.feature_free_title') }}</h5>
6363
<div class="feature-icon text-white rounded-circle d-inline-flex align-items-center justify-content-center mb-3" style="width: 4rem; height: 4rem; background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);">
6464
<i class="fas fa-magic"></i>
6565
</div>
66-
<h5 class="fw-bold">{{ _('home.feature_openai_title') }} <span class="badge bg-success ms-1">v3.3.3</span></h5>
66+
<h5 class="fw-bold">{{ _('home.feature_openai_title') }} <span class="badge bg-success ms-1">v3.3.4</span></h5>
6767
<p class="text-muted">{{ _('home.feature_openai_desc') }}</p>
6868
</div>
6969
</div>

ttsfm-web/translations/en.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@
152152
"feature_auto_combine": "Auto-combine feature - Automatically handles long text (>1000 chars) by splitting and combining audio",
153153
"feature_validation": "Text length validation - Smart validation with configurable limits",
154154
"feature_monitoring": "Real-time monitoring - Status endpoints and health checks",
155-
"new_version": "New in v3.3.1:",
155+
"new_version": "New in v3.3.4:",
156156
"new_version_desc": "Runtime images now ship with ffmpeg so MP3 auto-combine succeeds immediately, and the default long-text limit is trimmed to 1000 characters for predictable playback.",
157157
"authentication_title": "Authentication",
158158
"authentication_desc": "Currently, the API supports optional API key authentication. If configured, include your API key in the request headers.",

ttsfm/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
6262
)
6363
from .utils import split_text_by_length, validate_text_length
6464

65-
__version__ = "3.3.3"
65+
__version__ = "3.3.4"
6666
__author__ = "dbcccc"
6767
__email__ = "[email protected]"
6868
__description__ = "Text-to-Speech API Client with OpenAI compatibility"

0 commit comments

Comments
 (0)