diff --git a/CHANGELOG.md b/CHANGELOG.md index a0deaf8eb9..99b960314c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,30 @@ +## 1.11.3 + +* fix vits dict dir config (#2036) +* fix case (#2037) +* Fix building wheels for RKNN (#2041) +* Change scale factor to 32767 (#2056) +* Fix length scale for kokoro tts (#2060) +* Allow building repository as CMake subdirectory (#2059) +* Export silero_vad v4 to RKNN (#2067) +* fix dml with preinstall ort (#2066) +* Fix building aar to include speech denoiser (#2069) +* Add CXX API for VAD (#2077) +* Add C++ runtime for silero_vad with RKNN (#2078) +* Refactor rknn code (#2079) +* Fix building for android (#2081) +* Add C++ and Python API for Dolphin CTC models (#2085) +* Add Kotlin and Java API for Dolphin CTC models (#2086) +* Add C and CXX API for Dolphin CTC models (#2088) +* Preserve more context after endpointing in transducer (#2061) +* Add C# API for Dolphin CTC models (#2089) +* Add Go API for Dolphin CTC models (#2090) +* Add Swift API for Dolphin CTC models (#2091) +* Add Javascript (WebAssembly) API for Dolphin CTC models (#2093) +* Add Javascript (node-addon) API for Dolphin CTC models (#2094) +* Add Dart API for Dolphin CTC models (#2095) +* Add Pascal API for Dolphin CTC models (#2096) + ## 1.11.2 * Fix CI (#2016) diff --git a/CMakeLists.txt b/CMakeLists.txt index 966f750c4f..2fc7628412 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -14,7 +14,7 @@ project(sherpa-onnx) # Remember to update # ./CHANGELOG.md # ./new-release.sh -set(SHERPA_ONNX_VERSION "1.11.2") +set(SHERPA_ONNX_VERSION "1.11.3") # Disable warning about # diff --git a/android/SherpaOnnxAar/README.md b/android/SherpaOnnxAar/README.md index 2373756247..a5f7a2543c 100644 --- a/android/SherpaOnnxAar/README.md +++ b/android/SherpaOnnxAar/README.md @@ -4,8 +4,8 @@ git clone https://github.com/k2-fsa/sherpa-onnx cd sherpa-onnx -wget https://github.com/k2-fsa/sherpa-onnx/releases/download/v1.11.2/sherpa-onnx-v1.11.2-android.tar.bz2 -tar xvf sherpa-onnx-v1.11.2-android.tar.bz2 +wget https://github.com/k2-fsa/sherpa-onnx/releases/download/v1.11.3/sherpa-onnx-v1.11.3-android.tar.bz2 +tar xvf sherpa-onnx-v1.11.3-android.tar.bz2 cp -v jniLibs/arm64-v8a/* android/SherpaOnnxAar/sherpa_onnx/src/main/jniLibs/arm64-v8a/ cp -v jniLibs/armeabi-v7a/* android/SherpaOnnxAar/sherpa_onnx/src/main/jniLibs/armeabi-v7a/ @@ -16,5 +16,5 @@ cd android/SherpaOnnxAar ./gradlew :sherpa_onnx:assembleRelease ls -lh ./sherpa_onnx/build/outputs/aar/sherpa_onnx-release.aar -cp ./sherpa_onnx/build/outputs/aar/sherpa_onnx-release.aar ../../sherpa-onnx-1.11.2.aar +cp ./sherpa_onnx/build/outputs/aar/sherpa_onnx-release.aar ../../sherpa-onnx-1.11.3.aar ``` diff --git a/android/SherpaOnnxJavaDemo/app/build.gradle b/android/SherpaOnnxJavaDemo/app/build.gradle index 65442e8c82..85de0c6756 100644 --- a/android/SherpaOnnxJavaDemo/app/build.gradle +++ b/android/SherpaOnnxJavaDemo/app/build.gradle @@ -34,5 +34,5 @@ dependencies { implementation 'pub.devrel:easypermissions:3.0.0' implementation 'androidx.core:core-ktx:1.7.0' // implementation files('/Users/fangjun/open-source/sherpa-onnx/android/SherpaOnnxAar/sherpa_onnx/build/outputs/aar/sherpa_onnx-release.aar') - implementation 'com.github.k2-fsa:sherpa-onnx:v1.11.2' + implementation 'com.github.k2-fsa:sherpa-onnx:v1.11.3' } diff --git a/build-ios-shared.sh b/build-ios-shared.sh index 2ce39a25a0..3c144ac96c 100755 --- a/build-ios-shared.sh +++ b/build-ios-shared.sh @@ -242,7 +242,7 @@ for d in ios-arm64_x86_64-simulator ios-arm64; do CFBundlePackageType FMWK CFBundleShortVersionString - 1.11.2 + 1.11.3 CFBundleSupportedPlatforms iPhoneOS diff --git a/cxx-api-examples/dolphin-ctc-cxx-api.cc b/cxx-api-examples/dolphin-ctc-cxx-api.cc index ba597e382c..c219b4a9ac 100644 --- a/cxx-api-examples/dolphin-ctc-cxx-api.cc +++ b/cxx-api-examples/dolphin-ctc-cxx-api.cc @@ -24,10 +24,10 @@ int32_t main() { OfflineRecognizerConfig config; // clang-format off - config.model_config.dolphin.model = "./sherpa-onnx-dolphin-base-ctc-multi-lang-int8-2025-04-02/model.int8.onnx"; - config.model_config.tokens = "./sherpa-onnx-dolphin-base-ctc-multi-lang-int8-2025-04-02/tokens.txt"; + config.model_config.dolphin.model = "./sherpa-onnx-dolphin-base-ctc-multi-lang-int8-2025-04-02/model.int8.onnx"; // NOLINT + config.model_config.tokens = "./sherpa-onnx-dolphin-base-ctc-multi-lang-int8-2025-04-02/tokens.txt"; // NOLINT - std::string wave_filename = "./sherpa-onnx-dolphin-base-ctc-multi-lang-int8-2025-04-02/test_wavs/0.wav"; + std::string wave_filename = "./sherpa-onnx-dolphin-base-ctc-multi-lang-int8-2025-04-02/test_wavs/0.wav"; // NOLINT // clang-format on config.model_config.num_threads = 1; diff --git a/dart-api-examples/add-punctuations/pubspec.yaml b/dart-api-examples/add-punctuations/pubspec.yaml index db1ef96568..b0b1525dc2 100644 --- a/dart-api-examples/add-punctuations/pubspec.yaml +++ b/dart-api-examples/add-punctuations/pubspec.yaml @@ -9,7 +9,7 @@ environment: sdk: ">=3.0.0 <4.0.0" dependencies: - sherpa_onnx: ^1.11.2 + sherpa_onnx: ^1.11.3 path: ^1.9.0 args: ^2.5.0 diff --git a/dart-api-examples/audio-tagging/pubspec.yaml b/dart-api-examples/audio-tagging/pubspec.yaml index 30a0ea3779..88b7f566c3 100644 --- a/dart-api-examples/audio-tagging/pubspec.yaml +++ b/dart-api-examples/audio-tagging/pubspec.yaml @@ -9,7 +9,7 @@ environment: sdk: ">=3.0.0 <4.0.0" dependencies: - sherpa_onnx: ^1.11.2 + sherpa_onnx: ^1.11.3 path: ^1.9.0 args: ^2.5.0 diff --git a/dart-api-examples/keyword-spotter/pubspec.yaml b/dart-api-examples/keyword-spotter/pubspec.yaml index 7237023bb5..4840ebb7dc 100644 --- a/dart-api-examples/keyword-spotter/pubspec.yaml +++ b/dart-api-examples/keyword-spotter/pubspec.yaml @@ -9,7 +9,7 @@ environment: sdk: ">=3.0.0 <4.0.0" dependencies: - sherpa_onnx: ^1.11.2 + sherpa_onnx: ^1.11.3 # sherpa_onnx: # path: ../../flutter/sherpa_onnx path: ^1.9.0 diff --git a/dart-api-examples/non-streaming-asr/pubspec.yaml b/dart-api-examples/non-streaming-asr/pubspec.yaml index d38191407b..838215f092 100644 --- a/dart-api-examples/non-streaming-asr/pubspec.yaml +++ b/dart-api-examples/non-streaming-asr/pubspec.yaml @@ -10,7 +10,7 @@ environment: # Add regular dependencies here. dependencies: - sherpa_onnx: ^1.11.2 + sherpa_onnx: ^1.11.3 path: ^1.9.0 args: ^2.5.0 diff --git a/dart-api-examples/speaker-diarization/pubspec.yaml b/dart-api-examples/speaker-diarization/pubspec.yaml index b4c6ee0721..39b9b3c269 100644 --- a/dart-api-examples/speaker-diarization/pubspec.yaml +++ b/dart-api-examples/speaker-diarization/pubspec.yaml @@ -8,7 +8,7 @@ environment: sdk: ">=3.0.0 <4.0.0" dependencies: - sherpa_onnx: ^1.11.2 + sherpa_onnx: ^1.11.3 # sherpa_onnx: # path: ../../flutter/sherpa_onnx path: ^1.9.0 diff --git a/dart-api-examples/speaker-identification/pubspec.yaml b/dart-api-examples/speaker-identification/pubspec.yaml index 0453f3a3a1..a72fc33705 100644 --- a/dart-api-examples/speaker-identification/pubspec.yaml +++ b/dart-api-examples/speaker-identification/pubspec.yaml @@ -9,7 +9,7 @@ environment: sdk: ">=3.0.0 <4.0.0" dependencies: - sherpa_onnx: ^1.11.2 + sherpa_onnx: ^1.11.3 path: ^1.9.0 args: ^2.5.0 diff --git a/dart-api-examples/speech-enhancement-gtcrn/pubspec.yaml b/dart-api-examples/speech-enhancement-gtcrn/pubspec.yaml index c057266509..27c8a7863e 100644 --- a/dart-api-examples/speech-enhancement-gtcrn/pubspec.yaml +++ b/dart-api-examples/speech-enhancement-gtcrn/pubspec.yaml @@ -10,7 +10,7 @@ environment: # Add regular dependencies here. dependencies: - sherpa_onnx: ^1.11.2 + sherpa_onnx: ^1.11.3 # sherpa_onnx: # path: ../../flutter/sherpa_onnx path: ^1.9.0 diff --git a/dart-api-examples/streaming-asr/pubspec.yaml b/dart-api-examples/streaming-asr/pubspec.yaml index a58cd69989..d165a0258c 100644 --- a/dart-api-examples/streaming-asr/pubspec.yaml +++ b/dart-api-examples/streaming-asr/pubspec.yaml @@ -11,7 +11,7 @@ environment: # Add regular dependencies here. dependencies: - sherpa_onnx: ^1.11.2 + sherpa_onnx: ^1.11.3 path: ^1.9.0 args: ^2.5.0 diff --git a/dart-api-examples/tts/pubspec.yaml b/dart-api-examples/tts/pubspec.yaml index 3770eedaa0..2539dbf526 100644 --- a/dart-api-examples/tts/pubspec.yaml +++ b/dart-api-examples/tts/pubspec.yaml @@ -8,7 +8,7 @@ environment: # Add regular dependencies here. dependencies: - sherpa_onnx: ^1.11.2 + sherpa_onnx: ^1.11.3 path: ^1.9.0 args: ^2.5.0 diff --git a/dart-api-examples/vad-with-non-streaming-asr/pubspec.yaml b/dart-api-examples/vad-with-non-streaming-asr/pubspec.yaml index 6a059496cf..7124a6b4ef 100644 --- a/dart-api-examples/vad-with-non-streaming-asr/pubspec.yaml +++ b/dart-api-examples/vad-with-non-streaming-asr/pubspec.yaml @@ -10,7 +10,7 @@ environment: sdk: ">=3.0.0 <4.0.0" dependencies: - sherpa_onnx: ^1.11.2 + sherpa_onnx: ^1.11.3 path: ^1.9.0 args: ^2.5.0 diff --git a/dart-api-examples/vad/pubspec.yaml b/dart-api-examples/vad/pubspec.yaml index 84fb4069fc..9a1af0cbbd 100644 --- a/dart-api-examples/vad/pubspec.yaml +++ b/dart-api-examples/vad/pubspec.yaml @@ -9,7 +9,7 @@ environment: sdk: ">=3.0.0 <4.0.0" dependencies: - sherpa_onnx: ^1.11.2 + sherpa_onnx: ^1.11.3 path: ^1.9.0 args: ^2.5.0 diff --git a/flutter-examples/streaming_asr/pubspec.yaml b/flutter-examples/streaming_asr/pubspec.yaml index 83d6b40aec..c19ebafa11 100644 --- a/flutter-examples/streaming_asr/pubspec.yaml +++ b/flutter-examples/streaming_asr/pubspec.yaml @@ -5,7 +5,7 @@ description: > publish_to: 'none' -version: 1.11.2 +version: 1.11.3 topics: - speech-recognition @@ -31,7 +31,7 @@ dependencies: record: ^5.1.0 url_launcher: ^6.2.6 - sherpa_onnx: ^1.11.2 + sherpa_onnx: ^1.11.3 # sherpa_onnx: # path: ../../flutter/sherpa_onnx diff --git a/flutter-examples/tts/pubspec.yaml b/flutter-examples/tts/pubspec.yaml index 42618d334d..5806eedc99 100644 --- a/flutter-examples/tts/pubspec.yaml +++ b/flutter-examples/tts/pubspec.yaml @@ -5,7 +5,7 @@ description: > publish_to: 'none' # Remove this line if you wish to publish to pub.dev -version: 1.11.2 +version: 1.11.3 environment: sdk: ">=2.17.0 <4.0.0" @@ -18,7 +18,7 @@ dependencies: cupertino_icons: ^1.0.6 path_provider: ^2.1.3 path: ^1.9.0 - sherpa_onnx: ^1.11.2 + sherpa_onnx: ^1.11.3 # sherpa_onnx: # path: ../../flutter/sherpa_onnx url_launcher: 6.2.6 diff --git a/flutter/sherpa_onnx/pubspec.yaml b/flutter/sherpa_onnx/pubspec.yaml index 7293acea48..b4ef5058ef 100644 --- a/flutter/sherpa_onnx/pubspec.yaml +++ b/flutter/sherpa_onnx/pubspec.yaml @@ -17,7 +17,7 @@ topics: - voice-activity-detection # remember to change the version in ../sherpa_onnx_macos/macos/sherpa_onnx_macos.podspec -version: 1.11.2 +version: 1.11.3 homepage: https://github.com/k2-fsa/sherpa-onnx @@ -30,23 +30,23 @@ dependencies: flutter: sdk: flutter - sherpa_onnx_android: ^1.11.2 + sherpa_onnx_android: ^1.11.3 # sherpa_onnx_android: # path: ../sherpa_onnx_android - sherpa_onnx_macos: ^1.11.2 + sherpa_onnx_macos: ^1.11.3 # sherpa_onnx_macos: # path: ../sherpa_onnx_macos - sherpa_onnx_linux: ^1.11.2 + sherpa_onnx_linux: ^1.11.3 # sherpa_onnx_linux: # path: ../sherpa_onnx_linux - sherpa_onnx_windows: ^1.11.2 + sherpa_onnx_windows: ^1.11.3 # sherpa_onnx_windows: # path: ../sherpa_onnx_windows - sherpa_onnx_ios: ^1.11.2 + sherpa_onnx_ios: ^1.11.3 # sherpa_onnx_ios: # path: ../sherpa_onnx_ios diff --git a/flutter/sherpa_onnx_ios/ios/sherpa_onnx_ios.podspec b/flutter/sherpa_onnx_ios/ios/sherpa_onnx_ios.podspec index e21ab3c849..a516ddbd6e 100644 --- a/flutter/sherpa_onnx_ios/ios/sherpa_onnx_ios.podspec +++ b/flutter/sherpa_onnx_ios/ios/sherpa_onnx_ios.podspec @@ -7,7 +7,7 @@ # https://groups.google.com/g/dart-ffi/c/nUATMBy7r0c Pod::Spec.new do |s| s.name = 'sherpa_onnx_ios' - s.version = '1.11.2' + s.version = '1.11.3' s.summary = 'A new Flutter FFI plugin project.' s.description = <<-DESC A new Flutter FFI plugin project. diff --git a/flutter/sherpa_onnx_macos/macos/sherpa_onnx_macos.podspec b/flutter/sherpa_onnx_macos/macos/sherpa_onnx_macos.podspec index d8058e61d2..b0ad4235e6 100644 --- a/flutter/sherpa_onnx_macos/macos/sherpa_onnx_macos.podspec +++ b/flutter/sherpa_onnx_macos/macos/sherpa_onnx_macos.podspec @@ -4,7 +4,7 @@ # Pod::Spec.new do |s| s.name = 'sherpa_onnx_macos' - s.version = '1.11.2' + s.version = '1.11.3' s.summary = 'sherpa-onnx Flutter FFI plugin project.' s.description = <<-DESC sherpa-onnx Flutter FFI plugin project. diff --git a/harmony-os/SherpaOnnxHar/sherpa_onnx/BuildProfile.ets b/harmony-os/SherpaOnnxHar/sherpa_onnx/BuildProfile.ets index 278e77c2cc..940f218e56 100644 --- a/harmony-os/SherpaOnnxHar/sherpa_onnx/BuildProfile.ets +++ b/harmony-os/SherpaOnnxHar/sherpa_onnx/BuildProfile.ets @@ -1,7 +1,7 @@ /** * Use these variables when you tailor your ArkTS code. They must be of the const type. */ -export const HAR_VERSION = '1.11.2'; +export const HAR_VERSION = '1.11.3'; export const BUILD_MODE_NAME = 'debug'; export const DEBUG = true; export const TARGET_NAME = 'default'; diff --git a/harmony-os/SherpaOnnxHar/sherpa_onnx/README.md b/harmony-os/SherpaOnnxHar/sherpa_onnx/README.md index 92a0fbe7f3..84474b3479 100644 --- a/harmony-os/SherpaOnnxHar/sherpa_onnx/README.md +++ b/harmony-os/SherpaOnnxHar/sherpa_onnx/README.md @@ -23,7 +23,7 @@ or update your `oh-package.json5` to include the following: ``` "dependencies": { - "sherpa_onnx": "1.11.2", + "sherpa_onnx": "1.11.3", }, ``` diff --git a/harmony-os/SherpaOnnxHar/sherpa_onnx/oh-package.json5 b/harmony-os/SherpaOnnxHar/sherpa_onnx/oh-package.json5 index 5606576f9c..ea3faa885b 100644 --- a/harmony-os/SherpaOnnxHar/sherpa_onnx/oh-package.json5 +++ b/harmony-os/SherpaOnnxHar/sherpa_onnx/oh-package.json5 @@ -1,6 +1,6 @@ { "name": "sherpa_onnx", - "version": "1.11.2", + "version": "1.11.3", "description": "On-device speech-to-text, text-to-speech, and speaker diarization using Next-gen Kaldi without Internet connection", "main": "Index.ets", "author": "The next-gen Kaldi team", diff --git a/harmony-os/SherpaOnnxSpeakerDiarization/entry/oh-package.json5 b/harmony-os/SherpaOnnxSpeakerDiarization/entry/oh-package.json5 index f7f01dfeab..967dc1a750 100644 --- a/harmony-os/SherpaOnnxSpeakerDiarization/entry/oh-package.json5 +++ b/harmony-os/SherpaOnnxSpeakerDiarization/entry/oh-package.json5 @@ -6,7 +6,7 @@ "author": "", "license": "", "dependencies": { - "sherpa_onnx": "1.11.2" + "sherpa_onnx": "1.11.3" } } diff --git a/harmony-os/SherpaOnnxSpeakerIdentification/entry/oh-package.json5 b/harmony-os/SherpaOnnxSpeakerIdentification/entry/oh-package.json5 index 822f05c7b9..5d3b4325b5 100644 --- a/harmony-os/SherpaOnnxSpeakerIdentification/entry/oh-package.json5 +++ b/harmony-os/SherpaOnnxSpeakerIdentification/entry/oh-package.json5 @@ -6,7 +6,7 @@ "author": "", "license": "", "dependencies": { - "sherpa_onnx": "1.11.2", + "sherpa_onnx": "1.11.3", } } diff --git a/harmony-os/SherpaOnnxStreamingAsr/entry/oh-package.json5 b/harmony-os/SherpaOnnxStreamingAsr/entry/oh-package.json5 index 822f05c7b9..5d3b4325b5 100644 --- a/harmony-os/SherpaOnnxStreamingAsr/entry/oh-package.json5 +++ b/harmony-os/SherpaOnnxStreamingAsr/entry/oh-package.json5 @@ -6,7 +6,7 @@ "author": "", "license": "", "dependencies": { - "sherpa_onnx": "1.11.2", + "sherpa_onnx": "1.11.3", } } diff --git a/harmony-os/SherpaOnnxTts/entry/oh-package.json5 b/harmony-os/SherpaOnnxTts/entry/oh-package.json5 index 822f05c7b9..5d3b4325b5 100644 --- a/harmony-os/SherpaOnnxTts/entry/oh-package.json5 +++ b/harmony-os/SherpaOnnxTts/entry/oh-package.json5 @@ -6,7 +6,7 @@ "author": "", "license": "", "dependencies": { - "sherpa_onnx": "1.11.2", + "sherpa_onnx": "1.11.3", } } diff --git a/harmony-os/SherpaOnnxVadAsr/entry/README.md b/harmony-os/SherpaOnnxVadAsr/entry/README.md index ee503de1f1..4b55b8505e 100644 --- a/harmony-os/SherpaOnnxVadAsr/entry/README.md +++ b/harmony-os/SherpaOnnxVadAsr/entry/README.md @@ -1,6 +1,6 @@ # Introduction -Please download ./sherpa_onnx-v1.11.2.har +Please download ./sherpa_onnx-v1.11.3.har from Hint: For users who have no access to huggingface, please use diff --git a/harmony-os/SherpaOnnxVadAsr/entry/oh-package.json5 b/harmony-os/SherpaOnnxVadAsr/entry/oh-package.json5 index f8b440f876..7fc1306c3d 100644 --- a/harmony-os/SherpaOnnxVadAsr/entry/oh-package.json5 +++ b/harmony-os/SherpaOnnxVadAsr/entry/oh-package.json5 @@ -7,7 +7,7 @@ "license": "", "dependencies": { // please see https://ohpm.openharmony.cn/#/cn/detail/sherpa_onnx - "sherpa_onnx": "1.11.2", + "sherpa_onnx": "1.11.3", } } diff --git a/jitpack.yml b/jitpack.yml index 418dd32dbb..2eb0cf00b1 100644 --- a/jitpack.yml +++ b/jitpack.yml @@ -2,8 +2,8 @@ jdk: - openjdk17 before_install: - - wget https://github.com/k2-fsa/sherpa-onnx/releases/download/v1.11.2/sherpa-onnx-1.11.2.aar + - wget https://github.com/k2-fsa/sherpa-onnx/releases/download/v1.11.3/sherpa-onnx-1.11.3.aar install: - - FILE="-Dfile=sherpa-onnx-1.11.2.aar" - - mvn install:install-file $FILE -DgroupId=com.k2fsa.sherpa.onnx -DartifactId=sherpa-onnx -Dversion=1.11.2 -Dpackaging=aar -DgeneratePom=true + - FILE="-Dfile=sherpa-onnx-1.11.3.aar" + - mvn install:install-file $FILE -DgroupId=com.k2fsa.sherpa.onnx -DartifactId=sherpa-onnx -Dversion=1.11.3 -Dpackaging=aar -DgeneratePom=true diff --git a/mfc-examples/README.md b/mfc-examples/README.md index aada35d4c0..8a8a0139f2 100644 --- a/mfc-examples/README.md +++ b/mfc-examples/README.md @@ -5,9 +5,9 @@ for speech recognition. |Directory| Pre-built exe (x64)|Pre-built exe (x86)| Description| |---------|--------------------|-------------------|------------| -|[./NonStreamingSpeechRecognition](./NonStreamingSpeechRecognition)|[URL](https://github.com/k2-fsa/sherpa-onnx/releases/download/v1.11.2/sherpa-onnx-non-streaming-asr-x64-v1.11.2.exe)|[URL](https://github.com/k2-fsa/sherpa-onnx/releases/download/v1.11.2/sherpa-onnx-non-streaming-asr-x86-v1.11.2.exe)| Non-streaming speech recognition| -|[./StreamingSpeechRecognition](./StreamingSpeechRecognition)|[URL](https://github.com/k2-fsa/sherpa-onnx/releases/download/v1.11.2/sherpa-onnx-streaming-asr-x64-v1.11.2.exe)|[URL](https://github.com/k2-fsa/sherpa-onnx/releases/download/v1.11.2/sherpa-onnx-streaming-asr-x86-v1.11.2.exe)| Streaming speech recognition| -|[./NonStreamingTextToSpeech](./NonStreamingTextToSpeech)|[URL](https://github.com/k2-fsa/sherpa-onnx/releases/download/v1.11.2/sherpa-onnx-non-streaming-tts-x64-v1.11.2.exe)|[URL](https://github.com/k2-fsa/sherpa-onnx/releases/download/v1.11.2/sherpa-onnx-non-streaming-tts-x86-v1.11.2.exe)| Non-streaming text to speech| +|[./NonStreamingSpeechRecognition](./NonStreamingSpeechRecognition)|[URL](https://github.com/k2-fsa/sherpa-onnx/releases/download/v1.11.3/sherpa-onnx-non-streaming-asr-x64-v1.11.3.exe)|[URL](https://github.com/k2-fsa/sherpa-onnx/releases/download/v1.11.3/sherpa-onnx-non-streaming-asr-x86-v1.11.3.exe)| Non-streaming speech recognition| +|[./StreamingSpeechRecognition](./StreamingSpeechRecognition)|[URL](https://github.com/k2-fsa/sherpa-onnx/releases/download/v1.11.3/sherpa-onnx-streaming-asr-x64-v1.11.3.exe)|[URL](https://github.com/k2-fsa/sherpa-onnx/releases/download/v1.11.3/sherpa-onnx-streaming-asr-x86-v1.11.3.exe)| Streaming speech recognition| +|[./NonStreamingTextToSpeech](./NonStreamingTextToSpeech)|[URL](https://github.com/k2-fsa/sherpa-onnx/releases/download/v1.11.3/sherpa-onnx-non-streaming-tts-x64-v1.11.3.exe)|[URL](https://github.com/k2-fsa/sherpa-onnx/releases/download/v1.11.3/sherpa-onnx-non-streaming-tts-x86-v1.11.3.exe)| Non-streaming text to speech| Caution: You need to use Windows and install Visual Studio 2022 in order to compile it. diff --git a/new-release.sh b/new-release.sh index df23c21840..6db04f20de 100755 --- a/new-release.sh +++ b/new-release.sh @@ -2,23 +2,23 @@ set -ex -sed -i.bak 's/1\.11\.1/1\.11\.2/g' ./build-ios-shared.sh -sed -i.bak 's/1\.11\.1/1\.11\.2/g' ./pom.xml -sed -i.bak 's/1\.11\.1/1\.11\.2/g' ./jitpack.yml -sed -i.bak 's/1\.11\.1/1\.11\.2/g' ./android/SherpaOnnxAar/README.md +sed -i.bak 's/1\.11\.2/1\.11\.3/g' ./build-ios-shared.sh +sed -i.bak 's/1\.11\.2/1\.11\.3/g' ./pom.xml +sed -i.bak 's/1\.11\.2/1\.11\.3/g' ./jitpack.yml +sed -i.bak 's/1\.11\.2/1\.11\.3/g' ./android/SherpaOnnxAar/README.md -find android -name build.gradle -type f -exec sed -i.bak 's/sherpa-onnx:v1\.11\.1/sherpa-onnx:v1\.11\.2/g' {} \; +find android -name build.gradle -type f -exec sed -i.bak 's/sherpa-onnx:v1\.11\.2/sherpa-onnx:v1\.11\.3/g' {} \; -find flutter -name *.yaml -type f -exec sed -i.bak 's/1\.11\.1/1\.11\.2/g' {} \; -find dart-api-examples -name *.yaml -type f -exec sed -i.bak 's/1\.11\.1/1\.11\.2/g' {} \; -find flutter-examples -name *.yaml -type f -exec sed -i.bak 's/1\.11\.1/1\.11\.2/g' {} \; -find flutter -name *.podspec -type f -exec sed -i.bak 's/1\.11\.1/1\.11\.2/g' {} \; -find nodejs-addon-examples -name package.json -type f -exec sed -i.bak 's/1\.11\.1/1\.11\.2/g' {} \; -find nodejs-examples -name package.json -type f -exec sed -i.bak 's/1\.11\.1/1\.11\.2/g' {} \; +find flutter -name *.yaml -type f -exec sed -i.bak 's/1\.11\.2/1\.11\.3/g' {} \; +find dart-api-examples -name *.yaml -type f -exec sed -i.bak 's/1\.11\.2/1\.11\.3/g' {} \; +find flutter-examples -name *.yaml -type f -exec sed -i.bak 's/1\.11\.2/1\.11\.3/g' {} \; +find flutter -name *.podspec -type f -exec sed -i.bak 's/1\.11\.2/1\.11\.3/g' {} \; +find nodejs-addon-examples -name package.json -type f -exec sed -i.bak 's/1\.11\.2/1\.11\.3/g' {} \; +find nodejs-examples -name package.json -type f -exec sed -i.bak 's/1\.11\.2/1\.11\.3/g' {} \; -find harmony-os -name "README.md" -type f -exec sed -i.bak 's/1\.11\.1/1\.11\.2/g' {} \; -find harmony-os -name oh-package.json5 -type f -exec sed -i.bak 's/1\.11\.1/1\.11\.2/g' {} \; +find harmony-os -name "README.md" -type f -exec sed -i.bak 's/1\.11\.2/1\.11\.3/g' {} \; +find harmony-os -name oh-package.json5 -type f -exec sed -i.bak 's/1\.11\.2/1\.11\.3/g' {} \; -find mfc-examples -name "README.md" -type f -exec sed -i.bak 's/1\.11\.1/1\.11\.2/g' {} \; +find mfc-examples -name "README.md" -type f -exec sed -i.bak 's/1\.11\.2/1\.11\.3/g' {} \; find . -name "*.bak" -exec rm {} \; diff --git a/nodejs-addon-examples/package.json b/nodejs-addon-examples/package.json index 6ef51c64da..6c2c977b7f 100644 --- a/nodejs-addon-examples/package.json +++ b/nodejs-addon-examples/package.json @@ -1,5 +1,5 @@ { "dependencies": { - "sherpa-onnx-node": "^1.11.2" + "sherpa-onnx-node": "^1.11.3" } } diff --git a/nodejs-examples/package.json b/nodejs-examples/package.json index d17c0a4164..f005c4673b 100644 --- a/nodejs-examples/package.json +++ b/nodejs-examples/package.json @@ -2,7 +2,7 @@ "dependencies": { "mic": "^2.1.2", "naudiodon2": "^2.4.0", - "sherpa-onnx": "^1.11.2", + "sherpa-onnx": "^1.11.3", "wav": "^1.0.2" } } diff --git a/pom.xml b/pom.xml index ba56f4d8f7..941fcc04a4 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ 4.0.0 com.k2fsa.sherpa.onnx sherpa-onnx-android - 1.11.2 + 1.11.3 https://github.com/k2-fsa/sherpa-onnx pom First Android Library