Skip to content

Commit d49d85e

Browse files
committed
Bump version: 0.5.70 → 0.5.71
1 parent 2e74c1e commit d49d85e

File tree

7 files changed

+24
-7
lines changed

7 files changed

+24
-7
lines changed

.bumpversion.cfg

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.5.70
2+
current_version = 0.5.71
33
commit = True
44
tag = True
55

@@ -16,5 +16,13 @@ search = audio-transcriber[all]>={current_version}
1616
replace = audio-transcriber[all]>={new_version}
1717

1818
[bumpversion:file:audio_transcriber/audio_transcriber_agent.py]
19-
search = version="{current_version}"
20-
replace = version="{new_version}"
19+
search = __version__ = "{current_version}"
20+
replace = __version__ = "{new_version}"
21+
22+
[bumpversion:file:audio_transcriber/audio_transcriber_mcp.py]
23+
search = __version__ = "{current_version}"
24+
replace = __version__ = "{new_version}"
25+
26+
[bumpversion:file:audio_transcriber/audio_transcriber.py]
27+
search = __version__ = "{current_version}"
28+
replace = __version__ = "{new_version}"

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,6 @@ ENV HOST=${HOST} \
5353
RUN apt update \
5454
&& apt install -y libasound-dev gcc portaudio19-dev \
5555
&& curl -LsSf https://astral.sh/uv/install.sh | sh \
56-
&& uv pip install --system --upgrade --verbose --no-cache --break-system-packages audio-transcriber[all]>=0.5.70
56+
&& uv pip install --system --upgrade --verbose --no-cache --break-system-packages audio-transcriber[all]>=0.5.71
5757

5858
CMD ["audio-transcriber-mcp"]

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
![PyPI - Wheel](https://img.shields.io/pypi/wheel/audio-transcriber)
2222
![PyPI - Implementation](https://img.shields.io/pypi/implementation/audio-transcriber)
2323

24-
*Version: 0.5.70*
24+
*Version: 0.5.71*
2525

2626
## Overview
2727

audio_transcriber/audio_transcriber.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@
1414
import whisper
1515
import wave
1616

17+
__version__ = "0.5.71"
18+
1719

1820
class AudioTranscriber:
1921
"""A class for recording audio and transcribing it using OpenAI's Whisper model."""

audio_transcriber/audio_transcriber_agent.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,8 @@
2929
from pydantic_ai.ui import SSE_CONTENT_TYPE
3030
from pydantic_ai.ui.ag_ui import AGUIAdapter
3131

32+
__version__ = "0.5.71"
33+
3234
# Configure logging
3335
logging.basicConfig(
3436
level=logging.INFO,
@@ -160,7 +162,7 @@ def create_agent_server(
160162
a2a_app = agent.to_a2a(
161163
name=AGENT_NAME,
162164
description=AGENT_DESCRIPTION,
163-
version="0.5.70",
165+
version=__version__,
164166
skills=skills,
165167
debug=debug,
166168
)
@@ -236,6 +238,7 @@ async def ag_ui_endpoint(request: Request) -> Response:
236238

237239

238240
def agent_server():
241+
print(f"audio_transcriber_agent v{__version__}")
239242
parser = argparse.ArgumentParser(
240243
description=f"Run the {AGENT_NAME} A2A + AG-UI Server"
241244
)

audio_transcriber/audio_transcriber_mcp.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,8 @@
2929
JWTClaimsLoggingMiddleware,
3030
)
3131

32+
__version__ = "0.5.71"
33+
3234
logger = get_logger(name="TokenMiddleware")
3335
logger.setLevel(logging.DEBUG)
3436

@@ -231,6 +233,7 @@ def translate_audio_prompt(
231233

232234

233235
def audio_transcriber_mcp():
236+
print(f"audio_transcriber_mcp v{__version__}")
234237
parser = argparse.ArgumentParser(
235238
description="Audio Transcriber MCP - Run in stdio or http mode"
236239
)
@@ -729,6 +732,7 @@ def audio_transcriber_mcp():
729732
for mw in middlewares:
730733
mcp.add_middleware(mw)
731734

735+
print(f"Audio Transcriber MCP v{__version__}")
732736
print("\nStarting Audio Transcriber MCP Server")
733737
print(f" Transport: {args.transport.upper()}")
734738
print(f" Auth: {args.auth_type}")

pyproject.toml

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

55
[project]
66
name = "audio-transcriber"
7-
version = "0.5.70"
7+
version = "0.5.71"
88
description = "Transcribe your .wav .mp4 .mp3 .flac files to text or record your own audio!"
99
readme = "README.md"
1010
authors = [{ name = "Audel Rouhi", email = "knucklessg1@gmail.com" }]

0 commit comments

Comments
 (0)