Skip to content

Commit 31ced58

Browse files
authored
Release v1.11.3 (#2097)
1 parent 8137ac9 commit 31ced58

File tree

37 files changed

+91
-64
lines changed

37 files changed

+91
-64
lines changed

CHANGELOG.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,30 @@
1+
## 1.11.3
2+
3+
* fix vits dict dir config (#2036)
4+
* fix case (#2037)
5+
* Fix building wheels for RKNN (#2041)
6+
* Change scale factor to 32767 (#2056)
7+
* Fix length scale for kokoro tts (#2060)
8+
* Allow building repository as CMake subdirectory (#2059)
9+
* Export silero_vad v4 to RKNN (#2067)
10+
* fix dml with preinstall ort (#2066)
11+
* Fix building aar to include speech denoiser (#2069)
12+
* Add CXX API for VAD (#2077)
13+
* Add C++ runtime for silero_vad with RKNN (#2078)
14+
* Refactor rknn code (#2079)
15+
* Fix building for android (#2081)
16+
* Add C++ and Python API for Dolphin CTC models (#2085)
17+
* Add Kotlin and Java API for Dolphin CTC models (#2086)
18+
* Add C and CXX API for Dolphin CTC models (#2088)
19+
* Preserve more context after endpointing in transducer (#2061)
20+
* Add C# API for Dolphin CTC models (#2089)
21+
* Add Go API for Dolphin CTC models (#2090)
22+
* Add Swift API for Dolphin CTC models (#2091)
23+
* Add Javascript (WebAssembly) API for Dolphin CTC models (#2093)
24+
* Add Javascript (node-addon) API for Dolphin CTC models (#2094)
25+
* Add Dart API for Dolphin CTC models (#2095)
26+
* Add Pascal API for Dolphin CTC models (#2096)
27+
128
## 1.11.2
229

330
* Fix CI (#2016)

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ project(sherpa-onnx)
1414
# Remember to update
1515
# ./CHANGELOG.md
1616
# ./new-release.sh
17-
set(SHERPA_ONNX_VERSION "1.11.2")
17+
set(SHERPA_ONNX_VERSION "1.11.3")
1818

1919
# Disable warning about
2020
#

android/SherpaOnnxAar/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
git clone https://github.com/k2-fsa/sherpa-onnx
55
cd sherpa-onnx
66
7-
wget https://github.com/k2-fsa/sherpa-onnx/releases/download/v1.11.2/sherpa-onnx-v1.11.2-android.tar.bz2
8-
tar xvf sherpa-onnx-v1.11.2-android.tar.bz2
7+
wget https://github.com/k2-fsa/sherpa-onnx/releases/download/v1.11.3/sherpa-onnx-v1.11.3-android.tar.bz2
8+
tar xvf sherpa-onnx-v1.11.3-android.tar.bz2
99
1010
cp -v jniLibs/arm64-v8a/* android/SherpaOnnxAar/sherpa_onnx/src/main/jniLibs/arm64-v8a/
1111
cp -v jniLibs/armeabi-v7a/* android/SherpaOnnxAar/sherpa_onnx/src/main/jniLibs/armeabi-v7a/
@@ -16,5 +16,5 @@ cd android/SherpaOnnxAar
1616
1717
./gradlew :sherpa_onnx:assembleRelease
1818
ls -lh ./sherpa_onnx/build/outputs/aar/sherpa_onnx-release.aar
19-
cp ./sherpa_onnx/build/outputs/aar/sherpa_onnx-release.aar ../../sherpa-onnx-1.11.2.aar
19+
cp ./sherpa_onnx/build/outputs/aar/sherpa_onnx-release.aar ../../sherpa-onnx-1.11.3.aar
2020
```

android/SherpaOnnxJavaDemo/app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,5 +34,5 @@ dependencies {
3434
implementation 'pub.devrel:easypermissions:3.0.0'
3535
implementation 'androidx.core:core-ktx:1.7.0'
3636
// implementation files('/Users/fangjun/open-source/sherpa-onnx/android/SherpaOnnxAar/sherpa_onnx/build/outputs/aar/sherpa_onnx-release.aar')
37-
implementation 'com.github.k2-fsa:sherpa-onnx:v1.11.2'
37+
implementation 'com.github.k2-fsa:sherpa-onnx:v1.11.3'
3838
}

build-ios-shared.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,7 @@ for d in ios-arm64_x86_64-simulator ios-arm64; do
242242
<key>CFBundlePackageType</key>
243243
<string>FMWK</string>
244244
<key>CFBundleShortVersionString</key>
245-
<string>1.11.2</string>
245+
<string>1.11.3</string>
246246
<key>CFBundleSupportedPlatforms</key>
247247
<array>
248248
<string>iPhoneOS</string>

cxx-api-examples/dolphin-ctc-cxx-api.cc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@ int32_t main() {
2424
OfflineRecognizerConfig config;
2525

2626
// clang-format off
27-
config.model_config.dolphin.model = "./sherpa-onnx-dolphin-base-ctc-multi-lang-int8-2025-04-02/model.int8.onnx";
28-
config.model_config.tokens = "./sherpa-onnx-dolphin-base-ctc-multi-lang-int8-2025-04-02/tokens.txt";
27+
config.model_config.dolphin.model = "./sherpa-onnx-dolphin-base-ctc-multi-lang-int8-2025-04-02/model.int8.onnx"; // NOLINT
28+
config.model_config.tokens = "./sherpa-onnx-dolphin-base-ctc-multi-lang-int8-2025-04-02/tokens.txt"; // NOLINT
2929

30-
std::string wave_filename = "./sherpa-onnx-dolphin-base-ctc-multi-lang-int8-2025-04-02/test_wavs/0.wav";
30+
std::string wave_filename = "./sherpa-onnx-dolphin-base-ctc-multi-lang-int8-2025-04-02/test_wavs/0.wav"; // NOLINT
3131
// clang-format on
3232

3333
config.model_config.num_threads = 1;

dart-api-examples/add-punctuations/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ environment:
99
sdk: ">=3.0.0 <4.0.0"
1010

1111
dependencies:
12-
sherpa_onnx: ^1.11.2
12+
sherpa_onnx: ^1.11.3
1313
path: ^1.9.0
1414
args: ^2.5.0
1515

dart-api-examples/audio-tagging/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ environment:
99
sdk: ">=3.0.0 <4.0.0"
1010

1111
dependencies:
12-
sherpa_onnx: ^1.11.2
12+
sherpa_onnx: ^1.11.3
1313
path: ^1.9.0
1414
args: ^2.5.0
1515

dart-api-examples/keyword-spotter/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ environment:
99
sdk: ">=3.0.0 <4.0.0"
1010

1111
dependencies:
12-
sherpa_onnx: ^1.11.2
12+
sherpa_onnx: ^1.11.3
1313
# sherpa_onnx:
1414
# path: ../../flutter/sherpa_onnx
1515
path: ^1.9.0

dart-api-examples/non-streaming-asr/pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ environment:
1010

1111
# Add regular dependencies here.
1212
dependencies:
13-
sherpa_onnx: ^1.11.2
13+
sherpa_onnx: ^1.11.3
1414
path: ^1.9.0
1515
args: ^2.5.0
1616

0 commit comments

Comments
 (0)