File tree Expand file tree Collapse file tree 7 files changed +24
-7
lines changed
Expand file tree Collapse file tree 7 files changed +24
-7
lines changed Original file line number Diff line number Diff line change 11[bumpversion]
2- current_version = 0.5.70
2+ current_version = 0.5.71
33commit = True
44tag = True
55
@@ -16,5 +16,13 @@ search = audio-transcriber[all]>={current_version}
1616replace = 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}"
Original file line number Diff line number Diff line change @@ -53,6 +53,6 @@ ENV HOST=${HOST} \
5353RUN 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
5858CMD ["audio-transcriber-mcp" ]
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 1414import whisper
1515import wave
1616
17+ __version__ = "0.5.71"
18+
1719
1820class AudioTranscriber :
1921 """A class for recording audio and transcribing it using OpenAI's Whisper model."""
Original file line number Diff line number Diff line change 2929from pydantic_ai .ui import SSE_CONTENT_TYPE
3030from pydantic_ai .ui .ag_ui import AGUIAdapter
3131
32+ __version__ = "0.5.71"
33+
3234# Configure logging
3335logging .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
238240def 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 )
Original file line number Diff line number Diff line change 2929 JWTClaimsLoggingMiddleware ,
3030)
3131
32+ __version__ = "0.5.71"
33+
3234logger = get_logger (name = "TokenMiddleware" )
3335logger .setLevel (logging .DEBUG )
3436
@@ -231,6 +233,7 @@ def translate_audio_prompt(
231233
232234
233235def 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 ("\n Starting Audio Transcriber MCP Server" )
733737 print (f" Transport: { args .transport .upper ()} " )
734738 print (f" Auth: { args .auth_type } " )
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44
55[project ]
66name = " audio-transcriber"
7- version = " 0.5.70 "
7+ version = " 0.5.71 "
88description = " Transcribe your .wav .mp4 .mp3 .flac files to text or record your own audio!"
99readme = " README.md"
1010authors = [{ name = " Audel Rouhi" , email = " knucklessg1@gmail.com" }]
You can’t perform that action at this time.
0 commit comments