Skip to content

Commit 337d5f7

Browse files
authored
Release v1.10.46 (#1929)
1 parent eebe199 commit 337d5f7

File tree

45 files changed

+105
-79
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+105
-79
lines changed

CHANGELOG.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,25 @@
1+
## 1.10.46
2+
3+
# Fix kokoro lexicon. (#1886)
4+
# speaker-identification-with-vad-non-streaming-asr.py Lack of support for sense_voice. (#1884)
5+
# Fix generating Chinese lexicon for Kokoro TTS 1.0 (#1888)
6+
# Reduce vad-whisper-c-api example code. (#1891)
7+
# JNI Exception Handling (#1452)
8+
# Fix #1901: UnicodeEncodeError running export_bpe_vocab.py (#1902)
9+
# Fix publishing pre-built windows libraries (#1905)
10+
# Fixing Whisper Model Token Normalization (#1904)
11+
# feat: add mic example for better compatibility (#1909)
12+
# Add onnxruntime 1.18.1 for Linux aarch64 GPU (#1914)
13+
# Add C++ API for streaming zipformer ASR on RK NPU (#1908)
14+
# change [1<<28] to [1<<10], to fix build issues on GOARCH=386 that [1<<28] too large (#1916)
15+
# Flutter Config toJson/fromJson (#1893)
16+
# Fix publishing linux pre-built artifacts (#1919)
17+
# go.mod set to use go 1.17, and use unsafe.Slice to optimize the code (#1920)
18+
# fix: AddPunct panic for Go(#1921)
19+
# Fix publishing macos pre-built artifacts (#1922)
20+
# Minor fixes for rknn (#1925)
21+
# Build wheels for rknn linux aarch64 (#1928)
22+
123
## 1.10.45
224

325
* [update] fixed bug: create golang instance succeed while the c struct create failed (#1860)

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ project(sherpa-onnx)
1010
# Remember to update
1111
# ./CHANGELOG.md
1212
# ./new-release.sh
13-
set(SHERPA_ONNX_VERSION "1.10.45")
13+
set(SHERPA_ONNX_VERSION "1.10.46")
1414

1515
# Disable warning about
1616
#

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.10.45/sherpa-onnx-v1.10.45-android.tar.bz2
8-
tar xvf sherpa-onnx-v1.10.45-android.tar.bz2
7+
wget https://github.com/k2-fsa/sherpa-onnx/releases/download/v1.10.46/sherpa-onnx-v1.10.46-android.tar.bz2
8+
tar xvf sherpa-onnx-v1.10.46-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.10.45.aar
19+
cp ./sherpa_onnx/build/outputs/aar/sherpa_onnx-release.aar ../../sherpa-onnx-1.10.46.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.10.45'
37+
implementation 'com.github.k2-fsa:sherpa-onnx:v1.10.46'
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.10.45</string>
245+
<string>1.10.46</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.10.45
12+
sherpa_onnx: ^1.10.46
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.10.45
12+
sherpa_onnx: ^1.10.46
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.10.45
12+
sherpa_onnx: ^1.10.46
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.10.45
13+
sherpa_onnx: ^1.10.46
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.10.45
11+
sherpa_onnx: ^1.10.46
1212
# sherpa_onnx:
1313
# path: ../../flutter/sherpa_onnx
1414
path: ^1.9.0

0 commit comments

Comments
 (0)