From 1a2bb5dd7bf8e870f69c8c26df3184b85099f097 Mon Sep 17 00:00:00 2001 From: James Walker Date: Fri, 6 Jun 2025 12:18:12 +0100 Subject: [PATCH 1/2] Fix transcription example --- examples/transcribe_from_microphone.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/examples/transcribe_from_microphone.py b/examples/transcribe_from_microphone.py index 471bff2..1f22a48 100644 --- a/examples/transcribe_from_microphone.py +++ b/examples/transcribe_from_microphone.py @@ -33,7 +33,11 @@ async def transcribe_from_device(device, speechmatics_client, language: str, max enable_partials=True, enable_entities=True, ) - await speechmatics_client.run(RawInputStreamWrapper(stream), conf, settings) + await speechmatics_client.run( + transcription_config=conf, + stream=RawInputStreamWrapper(stream), + audio_settings=settings, + ) def main(args): From 7e46ce41a676f3f83f23ff6bcf07fc87fd2aad08 Mon Sep 17 00:00:00 2001 From: James Walker Date: Fri, 6 Jun 2025 13:44:51 +0100 Subject: [PATCH 2/2] update changelog and version --- CHANGELOG.md | 4 ++++ VERSION | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 61e3775..2292a0f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [4.0.3] - 2025-06-06 + +- Fixed microphone transcription tests not working after adding multichan dz support + ## [4.0.2] - 2025-06-04 ### Fixed diff --git a/VERSION b/VERSION index 4bac418..aa31e71 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -4.0.2 \ No newline at end of file +4.0.3 \ No newline at end of file