Skip to content

Commit 02c902a

Browse files
authored
Release v1.12.0 (#2221)
1 parent d8bb207 commit 02c902a

File tree

36 files changed

+81
-61
lines changed

36 files changed

+81
-61
lines changed

CHANGELOG.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,23 @@
1+
## 1.12.0
2+
3+
* Fix building wheels for macOS (#2192)
4+
* Show verbose logs in homophone replacer (#2194)
5+
* Fix displaying streaming speech recognition results for Python. (#2196)
6+
* Add real-time speech recognition example for SenseVoice. (#2197)
7+
* docs: add Open-XiaoAI KWS project (#2198)
8+
* Add C++ example for streaming ASR with SenseVoice. (#2199)
9+
* Add C++ example for real-time ASR with nvidia/parakeet-tdt-0.6b-v2. (#2201)
10+
* Add a link to YouTube video including sherpa-onnx. (#2202)
11+
* Support sending is_eof for online websocket server. (#2204)
12+
* Add alsa-based streaming ASR example for sense voice. (#2207)
13+
* Support homophone replacer in Android asr demo. (#2210)
14+
* Add Go implementation of the TTS generation callback (#2213)
15+
* Add Android demo for real-time ASR with non-streaming ASR models. (#2214)
16+
* Expose dither for JNI (#2215)
17+
* Add nodejs example for parakeet-tdt-0.6b-v2. (#2219)
18+
* Add script to build APK for simulated-streaming-asr. (#2220)
19+
20+
121
## 1.11.5
222

323
* export parakeet-tdt-0.6b-v2 to sherpa-onnx (#2180)

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.6")
17+
set(SHERPA_ONNX_VERSION "1.12.0")
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.5/sherpa-onnx-v1.11.5-android.tar.bz2
8-
tar xvf sherpa-onnx-v1.11.5-android.tar.bz2
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
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.5.aar
19+
cp ./sherpa_onnx/build/outputs/aar/sherpa_onnx-release.aar ../../sherpa-onnx-1.12.0.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.5'
37+
implementation 'com.github.k2-fsa:sherpa-onnx:v1.12.0'
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.5</string>
245+
<string>1.12.0</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.11.5
12+
sherpa_onnx: ^1.12.0
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.5
12+
sherpa_onnx: ^1.12.0
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.5
12+
sherpa_onnx: ^1.12.0
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.5
13+
sherpa_onnx: ^1.12.0
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.11.5
11+
sherpa_onnx: ^1.12.0
1212
# sherpa_onnx:
1313
# path: ../../flutter/sherpa_onnx
1414
path: ^1.9.0

dart-api-examples/speaker-identification/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.5
12+
sherpa_onnx: ^1.12.0
1313
path: ^1.9.0
1414
args: ^2.5.0
1515

dart-api-examples/speech-enhancement-gtcrn/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.5
13+
sherpa_onnx: ^1.12.0
1414
# sherpa_onnx:
1515
# path: ../../flutter/sherpa_onnx
1616
path: ^1.9.0

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

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

1212
# Add regular dependencies here.
1313
dependencies:
14-
sherpa_onnx: ^1.11.5
14+
sherpa_onnx: ^1.12.0
1515
path: ^1.9.0
1616
args: ^2.5.0
1717

dart-api-examples/tts/pubspec.yaml

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

99
# Add regular dependencies here.
1010
dependencies:
11-
sherpa_onnx: ^1.11.5
11+
sherpa_onnx: ^1.12.0
1212
path: ^1.9.0
1313
args: ^2.5.0
1414

dart-api-examples/vad-with-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
sdk: ">=3.0.0 <4.0.0"
1111

1212
dependencies:
13-
sherpa_onnx: ^1.11.5
13+
sherpa_onnx: ^1.12.0
1414
path: ^1.9.0
1515
args: ^2.5.0
1616

dart-api-examples/vad/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.5
12+
sherpa_onnx: ^1.12.0
1313
path: ^1.9.0
1414
args: ^2.5.0
1515

flutter-examples/streaming_asr/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description: >
55
66
publish_to: 'none'
77

8-
version: 1.11.5
8+
version: 1.12.0
99

1010
topics:
1111
- speech-recognition
@@ -31,7 +31,7 @@ dependencies:
3131
record: ^5.1.0
3232
url_launcher: ^6.2.6
3333

34-
sherpa_onnx: ^1.11.5
34+
sherpa_onnx: ^1.12.0
3535
# sherpa_onnx:
3636
# path: ../../flutter/sherpa_onnx
3737

flutter-examples/tts/pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description: >
55
66
publish_to: 'none' # Remove this line if you wish to publish to pub.dev
77

8-
version: 1.11.5
8+
version: 1.12.0
99

1010
environment:
1111
sdk: ">=2.17.0 <4.0.0"
@@ -18,7 +18,7 @@ dependencies:
1818
cupertino_icons: ^1.0.6
1919
path_provider: ^2.1.3
2020
path: ^1.9.0
21-
sherpa_onnx: ^1.11.5
21+
sherpa_onnx: ^1.12.0
2222
# sherpa_onnx:
2323
# path: ../../flutter/sherpa_onnx
2424
url_launcher: 6.2.6

flutter/sherpa_onnx/pubspec.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ topics:
1717
- voice-activity-detection
1818

1919
# remember to change the version in ../sherpa_onnx_macos/macos/sherpa_onnx_macos.podspec
20-
version: 1.11.5
20+
version: 1.12.0
2121

2222
homepage: https://github.com/k2-fsa/sherpa-onnx
2323

@@ -30,23 +30,23 @@ dependencies:
3030
flutter:
3131
sdk: flutter
3232

33-
sherpa_onnx_android: ^1.11.5
33+
sherpa_onnx_android: ^1.12.0
3434
# sherpa_onnx_android:
3535
# path: ../sherpa_onnx_android
3636

37-
sherpa_onnx_macos: ^1.11.5
37+
sherpa_onnx_macos: ^1.12.0
3838
# sherpa_onnx_macos:
3939
# path: ../sherpa_onnx_macos
4040

41-
sherpa_onnx_linux: ^1.11.5
41+
sherpa_onnx_linux: ^1.12.0
4242
# sherpa_onnx_linux:
4343
# path: ../sherpa_onnx_linux
4444

45-
sherpa_onnx_windows: ^1.11.5
45+
sherpa_onnx_windows: ^1.12.0
4646
# sherpa_onnx_windows:
4747
# path: ../sherpa_onnx_windows
4848

49-
sherpa_onnx_ios: ^1.11.5
49+
sherpa_onnx_ios: ^1.12.0
5050
# sherpa_onnx_ios:
5151
# path: ../sherpa_onnx_ios
5252

flutter/sherpa_onnx_ios/ios/sherpa_onnx_ios.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
# https://groups.google.com/g/dart-ffi/c/nUATMBy7r0c
88
Pod::Spec.new do |s|
99
s.name = 'sherpa_onnx_ios'
10-
s.version = '1.11.5'
10+
s.version = '1.12.0'
1111
s.summary = 'A new Flutter FFI plugin project.'
1212
s.description = <<-DESC
1313
A new Flutter FFI plugin project.

flutter/sherpa_onnx_macos/macos/sherpa_onnx_macos.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#
55
Pod::Spec.new do |s|
66
s.name = 'sherpa_onnx_macos'
7-
s.version = '1.11.5'
7+
s.version = '1.12.0'
88
s.summary = 'sherpa-onnx Flutter FFI plugin project.'
99
s.description = <<-DESC
1010
sherpa-onnx Flutter FFI plugin project.

harmony-os/SherpaOnnxHar/sherpa_onnx/BuildProfile.ets

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/**
22
* Use these variables when you tailor your ArkTS code. They must be of the const type.
33
*/
4-
export const HAR_VERSION = '1.11.5';
4+
export const HAR_VERSION = '1.12.0';
55
export const BUILD_MODE_NAME = 'debug';
66
export const DEBUG = true;
77
export const TARGET_NAME = 'default';

harmony-os/SherpaOnnxHar/sherpa_onnx/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ or update your `oh-package.json5` to include the following:
2323

2424
```
2525
"dependencies": {
26-
"sherpa_onnx": "1.11.5",
26+
"sherpa_onnx": "1.12.0",
2727
},
2828
```
2929

harmony-os/SherpaOnnxHar/sherpa_onnx/oh-package.json5

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "sherpa_onnx",
3-
"version": "1.11.5",
3+
"version": "1.12.0",
44
"description": "On-device speech-to-text, text-to-speech, and speaker diarization using Next-gen Kaldi without Internet connection",
55
"main": "Index.ets",
66
"author": "The next-gen Kaldi team",

harmony-os/SherpaOnnxSpeakerDiarization/entry/oh-package.json5

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"author": "",
77
"license": "",
88
"dependencies": {
9-
"sherpa_onnx": "1.11.5"
9+
"sherpa_onnx": "1.12.0"
1010
}
1111
}
1212

harmony-os/SherpaOnnxSpeakerIdentification/entry/oh-package.json5

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"author": "",
77
"license": "",
88
"dependencies": {
9-
"sherpa_onnx": "1.11.5",
9+
"sherpa_onnx": "1.12.0",
1010
}
1111
}
1212

harmony-os/SherpaOnnxStreamingAsr/entry/oh-package.json5

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"author": "",
77
"license": "",
88
"dependencies": {
9-
"sherpa_onnx": "1.11.5",
9+
"sherpa_onnx": "1.12.0",
1010
}
1111
}
1212

harmony-os/SherpaOnnxTts/entry/oh-package.json5

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"author": "",
77
"license": "",
88
"dependencies": {
9-
"sherpa_onnx": "1.11.5",
9+
"sherpa_onnx": "1.12.0",
1010
}
1111
}
1212

harmony-os/SherpaOnnxVadAsr/entry/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Introduction
22

3-
Please download ./sherpa_onnx-v1.11.5.har
3+
Please download ./sherpa_onnx-v1.12.0.har
44
from <https://huggingface.co/csukuangfj/sherpa-onnx-harmony-os/tree/main/har>
55

66
Hint: For users who have no access to huggingface, please use

harmony-os/SherpaOnnxVadAsr/entry/oh-package.json5

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"license": "",
88
"dependencies": {
99
// please see https://ohpm.openharmony.cn/#/cn/detail/sherpa_onnx
10-
"sherpa_onnx": "1.11.5",
10+
"sherpa_onnx": "1.12.0",
1111
}
1212
}
1313

jitpack.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ jdk:
22
- openjdk17
33

44
before_install:
5-
- wget https://github.com/k2-fsa/sherpa-onnx/releases/download/v1.11.5/sherpa-onnx-1.11.5.aar
5+
- wget https://github.com/k2-fsa/sherpa-onnx/releases/download/v1.12.0/sherpa-onnx-1.12.0.aar
66

77
install:
8-
- FILE="-Dfile=sherpa-onnx-1.11.5.aar"
9-
- mvn install:install-file $FILE -DgroupId=com.k2fsa.sherpa.onnx -DartifactId=sherpa-onnx -Dversion=1.11.5 -Dpackaging=aar -DgeneratePom=true
8+
- FILE="-Dfile=sherpa-onnx-1.12.0.aar"
9+
- mvn install:install-file $FILE -DgroupId=com.k2fsa.sherpa.onnx -DartifactId=sherpa-onnx -Dversion=1.12.0 -Dpackaging=aar -DgeneratePom=true

mfc-examples/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ for speech recognition.
55

66
|Directory| Pre-built exe (x64)|Pre-built exe (x86)| Description|
77
|---------|--------------------|-------------------|------------|
8-
|[./NonStreamingSpeechRecognition](./NonStreamingSpeechRecognition)|[URL](https://github.com/k2-fsa/sherpa-onnx/releases/download/v1.11.5/sherpa-onnx-non-streaming-asr-x64-v1.11.5.exe)|[URL](https://github.com/k2-fsa/sherpa-onnx/releases/download/v1.11.5/sherpa-onnx-non-streaming-asr-x86-v1.11.5.exe)| Non-streaming speech recognition|
9-
|[./StreamingSpeechRecognition](./StreamingSpeechRecognition)|[URL](https://github.com/k2-fsa/sherpa-onnx/releases/download/v1.11.5/sherpa-onnx-streaming-asr-x64-v1.11.5.exe)|[URL](https://github.com/k2-fsa/sherpa-onnx/releases/download/v1.11.5/sherpa-onnx-streaming-asr-x86-v1.11.5.exe)| Streaming speech recognition|
10-
|[./NonStreamingTextToSpeech](./NonStreamingTextToSpeech)|[URL](https://github.com/k2-fsa/sherpa-onnx/releases/download/v1.11.5/sherpa-onnx-non-streaming-tts-x64-v1.11.5.exe)|[URL](https://github.com/k2-fsa/sherpa-onnx/releases/download/v1.11.5/sherpa-onnx-non-streaming-tts-x86-v1.11.5.exe)| Non-streaming text to speech|
8+
|[./NonStreamingSpeechRecognition](./NonStreamingSpeechRecognition)|[URL](https://github.com/k2-fsa/sherpa-onnx/releases/download/v1.12.0/sherpa-onnx-non-streaming-asr-x64-v1.12.0.exe)|[URL](https://github.com/k2-fsa/sherpa-onnx/releases/download/v1.12.0/sherpa-onnx-non-streaming-asr-x86-v1.12.0.exe)| Non-streaming speech recognition|
9+
|[./StreamingSpeechRecognition](./StreamingSpeechRecognition)|[URL](https://github.com/k2-fsa/sherpa-onnx/releases/download/v1.12.0/sherpa-onnx-streaming-asr-x64-v1.12.0.exe)|[URL](https://github.com/k2-fsa/sherpa-onnx/releases/download/v1.12.0/sherpa-onnx-streaming-asr-x86-v1.12.0.exe)| Streaming speech recognition|
10+
|[./NonStreamingTextToSpeech](./NonStreamingTextToSpeech)|[URL](https://github.com/k2-fsa/sherpa-onnx/releases/download/v1.12.0/sherpa-onnx-non-streaming-tts-x64-v1.12.0.exe)|[URL](https://github.com/k2-fsa/sherpa-onnx/releases/download/v1.12.0/sherpa-onnx-non-streaming-tts-x86-v1.12.0.exe)| Non-streaming text to speech|
1111

1212
Caution: You need to use Windows and install Visual Studio 2022 in order to
1313
compile it.

new-release.sh

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -2,23 +2,23 @@
22

33
set -ex
44

5-
sed -i.bak 's/1\.11\.4/1\.11\.5/g' ./build-ios-shared.sh
6-
sed -i.bak 's/1\.11\.4/1\.11\.5/g' ./pom.xml
7-
sed -i.bak 's/1\.11\.4/1\.11\.5/g' ./jitpack.yml
8-
sed -i.bak 's/1\.11\.4/1\.11\.5/g' ./android/SherpaOnnxAar/README.md
5+
sed -i.bak 's/1\.11\.5/1\.12\.0/g' ./build-ios-shared.sh
6+
sed -i.bak 's/1\.11\.5/1\.12\.0/g' ./pom.xml
7+
sed -i.bak 's/1\.11\.5/1\.12\.0/g' ./jitpack.yml
8+
sed -i.bak 's/1\.11\.5/1\.12\.0/g' ./android/SherpaOnnxAar/README.md
99

10-
find android -name build.gradle -type f -exec sed -i.bak 's/sherpa-onnx:v1\.11\.4/sherpa-onnx:v1\.11\.5/g' {} \;
10+
find android -name build.gradle -type f -exec sed -i.bak 's/sherpa-onnx:v1\.11\.5/sherpa-onnx:v1\.12\.0/g' {} \;
1111

12-
find flutter -name *.yaml -type f -exec sed -i.bak 's/1\.11\.4/1\.11\.5/g' {} \;
13-
find dart-api-examples -name *.yaml -type f -exec sed -i.bak 's/1\.11\.4/1\.11\.5/g' {} \;
14-
find flutter-examples -name *.yaml -type f -exec sed -i.bak 's/1\.11\.4/1\.11\.5/g' {} \;
15-
find flutter -name *.podspec -type f -exec sed -i.bak 's/1\.11\.4/1\.11\.5/g' {} \;
16-
find nodejs-addon-examples -name package.json -type f -exec sed -i.bak 's/1\.11\.4/1\.11\.5/g' {} \;
17-
find nodejs-examples -name package.json -type f -exec sed -i.bak 's/1\.11\.4/1\.11\.5/g' {} \;
12+
find flutter -name *.yaml -type f -exec sed -i.bak 's/1\.11\.5/1\.12\.0/g' {} \;
13+
find dart-api-examples -name *.yaml -type f -exec sed -i.bak 's/1\.11\.5/1\.12\.0/g' {} \;
14+
find flutter-examples -name *.yaml -type f -exec sed -i.bak 's/1\.11\.5/1\.12\.0/g' {} \;
15+
find flutter -name *.podspec -type f -exec sed -i.bak 's/1\.11\.5/1\.12\.0/g' {} \;
16+
find nodejs-addon-examples -name package.json -type f -exec sed -i.bak 's/1\.11\.5/1\.12\.0/g' {} \;
17+
find nodejs-examples -name package.json -type f -exec sed -i.bak 's/1\.11\.5/1\.12\.0/g' {} \;
1818

19-
find harmony-os -name "README.md" -type f -exec sed -i.bak 's/1\.11\.4/1\.11\.5/g' {} \;
20-
find harmony-os -name oh-package.json5 -type f -exec sed -i.bak 's/1\.11\.4/1\.11\.5/g' {} \;
19+
find harmony-os -name "README.md" -type f -exec sed -i.bak 's/1\.11\.5/1\.12\.0/g' {} \;
20+
find harmony-os -name oh-package.json5 -type f -exec sed -i.bak 's/1\.11\.5/1\.12\.0/g' {} \;
2121

22-
find mfc-examples -name "README.md" -type f -exec sed -i.bak 's/1\.11\.4/1\.11\.5/g' {} \;
22+
find mfc-examples -name "README.md" -type f -exec sed -i.bak 's/1\.11\.5/1\.12\.0/g' {} \;
2323

2424
find . -name "*.bak" -exec rm {} \;

0 commit comments

Comments
 (0)