Skip to content

Commit 749dc9a

Browse files
authored
Release v1.12.1 (#2277)
1 parent 9539af5 commit 749dc9a

37 files changed

Lines changed: 84 additions & 62 deletions

File tree

CHANGELOG.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,26 @@
1+
## 1.12.1
2+
3+
* Use jlong explicitly in jni. (#2229)
4+
* Fix building RKNN wheels (#2233)
5+
* Fix publishing binaries for RKNN (#2234)
6+
* Export spleeter model to onnx for source separation (#2237)
7+
* Add C++ runtime for spleeter about source separation (#2242)
8+
* Add include headers for __ANDROID_API__,__OHOS__ (#2251)
9+
* JAVA-API: Manual Library Loading Support for Restricted Environments (#2253)
10+
* Build APK with replace.fst (#2254)
11+
* repair rknn wheels (#2257)
12+
* Update kaldi-native-fbank. (#2259)
13+
* Fix building sherpa-onnx (#2262)
14+
* Fix building MFC examples (#2263)
15+
* Add UVR models for source separation. (#2266)
16+
* move portaudio common record code to microphone (#2264)
17+
* fixed mfc build error (#2267)
18+
* Add C++ support for UVR models (#2269)
19+
* Export nvidia/canary-180m-flash to sherpa-onnx (#2272)
20+
* Update utils.dart (#2275)
21+
* Fix rknn for multi-threads (#2274)
22+
* Fix 32-bit arm CI (#2276)
23+
124
## 1.12.0
225

326
* Fix building wheels for macOS (#2192)

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

cxx-api-examples/sense-voice-simulate-streaming-alsa-cxx-api.cc

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@
2727
#include <thread> // NOLINT
2828
#include <vector>
2929

30-
#include "portaudio.h" // NOLINT
3130
#include "sherpa-display.h" // NOLINT
3231
#include "sherpa-onnx/c-api/cxx-api.h"
3332
#include "sherpa-onnx/csrc/alsa.h"

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

0 commit comments

Comments
 (0)