Skip to content

Commit 0d44df9

Browse files
authored
Release v1.12.5 (#2368)
1 parent fd9a687 commit 0d44df9

File tree

37 files changed

+71
-52
lines changed

37 files changed

+71
-52
lines changed

CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
1+
## 1.12.5
2+
3+
* Fix typo CMAKE_EXECUTBLE_LINKER_FLAGS -> CMAKE_EXECUTABLE_LINKER_FLAGS (#2344)
4+
* Fix testing dart packages (#2345)
5+
* fix(canary): use dynamo export, single input_ids and avoid 0/1 specialization (#2348)
6+
* Fix TTS for Unreal Engine (#2349)
7+
* Update readme to include https://github.com/mawwalker/stt-server (#2350)
8+
* Add meta data to NeMo canary ONNX models (#2351)
9+
* Update README to include https://github.com/bbeyondllove/asr_server (#2353)
10+
* Add C++ runtime and Python API for NeMo Canary models (#2352)
11+
* Add C/CXX/JavaScript API for NeMo Canary models (#2357)
12+
* Add Java and Kotlin API for NeMo Canary models (#2359)
13+
* Upload fp16 onnx model files for FireRedASR (#2360)
14+
* Fix nemo feature normalization in test code (#2361)
15+
* Refactor exporting NeMo models (#2362)
16+
* Add LODR support to online and offline recognizers (#2026)
17+
* Add CXX examples for NeMo TDT ASR. (#2363)
18+
* Add Pascal/Go/C#/Dart API for NeMo Canary ASR models (#2367)
19+
120
## 1.12.4
221

322
* Refactor release scripts. (#2323)

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.12.4")
17+
set(SHERPA_ONNX_VERSION "1.12.5")
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.12.4/sherpa-onnx-v1.12.4-android.tar.bz2
8-
tar xvf sherpa-onnx-v1.12.4-android.tar.bz2
7+
wget https://github.com/k2-fsa/sherpa-onnx/releases/download/v1.12.5/sherpa-onnx-v1.12.5-android.tar.bz2
8+
tar xvf sherpa-onnx-v1.12.5-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.12.4.aar
19+
cp ./sherpa_onnx/build/outputs/aar/sherpa_onnx-release.aar ../../sherpa-onnx-1.12.5.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.12.4'
37+
implementation 'com.github.k2-fsa:sherpa-onnx:v1.12.5'
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.12.4</string>
245+
<string>1.12.5</string>
246246
<key>CFBundleSupportedPlatforms</key>
247247
<array>
248248
<string>iPhoneOS</string>

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.12.4
12+
sherpa_onnx: ^1.12.5
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.12.4
12+
sherpa_onnx: ^1.12.5
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.12.4
12+
sherpa_onnx: ^1.12.5
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.12.4
13+
sherpa_onnx: ^1.12.5
1414
path: ^1.9.0
1515
args: ^2.5.0
1616

dart-api-examples/speaker-diarization/pubspec.yaml

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

1010
dependencies:
11-
sherpa_onnx: ^1.12.4
11+
sherpa_onnx: ^1.12.5
1212
# sherpa_onnx:
1313
# path: ../../flutter/sherpa_onnx
1414
path: ^1.9.0

0 commit comments

Comments
 (0)