Skip to content

Commit

Permalink
doc: 7.1.0-beta.1
Browse files Browse the repository at this point in the history
  • Loading branch information
sowens-csd committed Sep 20, 2024
1 parent 70c5851 commit 69ec729
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 6 deletions.
11 changes: 11 additions & 0 deletions speech_to_text/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# Changelog

## 7.1.0

### Fix
* on iOS there is a new bug in their speech recognition that resets the transcription after
a pause in the users' speech. This version attempts a mitigation by using meta information
from the recognizer to concatenate subsequent transcriptions so the whole is not lost. There
are problems with this approach, notably extra capitalization and possibly incorrects spaces
being added. The concatenated transcription is added as the first result but all other results
are still the same. See issue [#552](https://github.com/csdcorp/speech_to_text/issues/552)
for details.

## 7.0.0

### New
Expand Down
4 changes: 2 additions & 2 deletions speech_to_text/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# speech_to_text

[![pub package](https://img.shields.io/badge/pub-v7.0.0-blue)](https://pub.dartlang.org/packages/speech_to_text) [![build status](https://github.com/csdcorp/speech_to_text/workflows/Test/badge.svg)](https://github.com/csdcorp/speech_to_text/actions?query=workflow%3ATest) [![codecov](https://codecov.io/gh/csdcorp/speech_to_text/branch/main/graph/badge.svg?token=4LV3HESMS4)](undefined)
[![pub package](https://img.shields.io/badge/pub-v7.1.0-blue)](https://pub.dartlang.org/packages/speech_to_text) [![build status](https://github.com/csdcorp/speech_to_text/workflows/Test/badge.svg)](https://github.com/csdcorp/speech_to_text/actions?query=workflow%3ATest) [![codecov](https://codecov.io/gh/csdcorp/speech_to_text/branch/main/graph/badge.svg?token=4LV3HESMS4)](undefined)

A library that exposes device specific speech recognition capability.

Expand All @@ -24,7 +24,7 @@ _speech: means most speech recognition features work. Platforms with build but n

## Recent Updates

6.7.0
7.0.0
* Now supports speech recognition on MacOS with many thanks to @alexrabin-sentracam for the PR!
* Now supports WASM compliation for web with many thanks to yeikel16 for the PR!

Expand Down
6 changes: 3 additions & 3 deletions speech_to_text/example/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ packages:
path: ".."
relative: true
source: path
version: "7.0.0-beta.1"
version: "7.0.0"
speech_to_text_platform_interface:
dependency: transitive
description:
Expand Down Expand Up @@ -256,10 +256,10 @@ packages:
dependency: transitive
description:
name: vm_service
sha256: f652077d0bdf60abe4c1f6377448e8655008eef28f128bc023f7b5e8dfeb48fc
sha256: "5c5f338a667b4c644744b661f309fb8080bb94b18a7e91ef1dbd343bed00ed6d"
url: "https://pub.dev"
source: hosted
version: "14.2.4"
version: "14.2.5"
web:
dependency: transitive
description:
Expand Down
2 changes: 1 addition & 1 deletion speech_to_text/pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: speech_to_text
description: A Flutter plugin that exposes device specific speech to text recognition capability.
version: 7.0.0
version: 7.1.0-beta.1
homepage: https://github.com/csdcorp/speech_to_text

environment:
Expand Down

0 comments on commit 69ec729

Please sign in to comment.