Skip to content

Commit 800d3d7

Browse files
committed
Bump version
1 parent b471207 commit 800d3d7

File tree

10 files changed

+16
-16
lines changed

10 files changed

+16
-16
lines changed

android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ buildscript {
1010
}
1111

1212
allprojects {
13-
version = '0.3.44'
13+
version = '0.3.45'
1414
}
1515

1616
subprojects {

csharp/demo/VoskDemo.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
</PropertyGroup>
1212

1313
<ItemGroup>
14-
<PackageReference Include="Vosk" Version="0.3.44" />
14+
<PackageReference Include="Vosk" Version="0.3.45" />
1515
</ItemGroup>
1616

1717
</Project>

csharp/nuget/Vosk.nuspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<package>
33
<metadata>
44
<id>Vosk</id>
5-
<version>0.3.44</version>
5+
<version>0.3.45</version>
66
<authors>Alpha Cephei Inc</authors>
77
<owners>Alpha Cephei Inc</owners>
88
<license type="expression">Apache-2.0</license>

go/example/README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,24 +5,24 @@ On Linux (we download library and set LD_LIBRARY_PATH)
55
```
66
git clone https://github.com/alphacep/vosk-api
77
cd vosk-api/go/example
8-
wget https://github.com/alphacep/vosk-api/releases/download/v0.3.42/vosk-linux-x86_64-0.3.42.zip
9-
unzip vosk-linux-x86_64-0.3.42.zip
8+
wget https://github.com/alphacep/vosk-api/releases/download/v0.3.45/vosk-linux-x86_64-0.3.45.zip
9+
unzip vosk-linux-x86_64-0.3.45.zip
1010
wget https://alphacephei.com/vosk/models/vosk-model-small-en-us-0.15.zip
1111
unzip vosk-model-small-en-us-0.15.zip
1212
mv vosk-model-small-en-us-0.15 model
1313
cp ../../python/example/test.wav .
14-
VOSK_PATH=`pwd`/vosk-linux-x86_64-0.3.42 LD_LIBRARY_PATH=$VOSK_PATH CGO_CPPFLAGS="-I $VOSK_PATH" CGO_LDFLAGS="-L $VOSK_PATH" go run . -f test.wav
14+
VOSK_PATH=`pwd`/vosk-linux-x86_64-0.3.45 LD_LIBRARY_PATH=$VOSK_PATH CGO_CPPFLAGS="-I $VOSK_PATH" CGO_LDFLAGS="-L $VOSK_PATH" go run . -f test.wav
1515
```
1616

1717
for Windows (we place DLLs in current folder where linker finds them):
1818

1919
```
2020
git clone https://github.com/alphacep/vosk-api
2121
cd vosk-api/go/example
22-
wget https://github.com/alphacep/vosk-api/releases/download/v0.3.42/vosk-linux-x86_64-0.3.42.zip
23-
unzip vosk-linux-x86_64-0.3.42.zip
24-
cp vosk-linux-x86_64-0.3.42/*.dll .
25-
cp vosk-linux-x86_64-0.3.42/*.h .
22+
wget https://github.com/alphacep/vosk-api/releases/download/v0.3.45/vosk-linux-x86_64-0.3.45.zip
23+
unzip vosk-linux-x86_64-0.3.45.zip
24+
cp vosk-linux-x86_64-0.3.45/*.dll .
25+
cp vosk-linux-x86_64-0.3.45/*.h .
2626
wget https://alphacephei.com/vosk/models/vosk-model-small-en-us-0.15.zip
2727
unzip vosk-model-small-en-us-0.15.zip
2828
mv vosk-model-small-en-us-0.15 model

java/demo/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,5 @@ repositories {
1212

1313
dependencies {
1414
implementation group: 'net.java.dev.jna', name: 'jna', version: '5.7.0'
15-
implementation group: 'com.alphacephei', name: 'vosk', version: '0.3.44+'
15+
implementation group: 'com.alphacephei', name: 'vosk', version: '0.3.40+'
1616
}

java/lib/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ repositories {
1616

1717
archivesBaseName = 'vosk'
1818
group = 'com.alphacephei'
19-
version = '0.3.44'
19+
version = '0.3.45'
2020

2121
mavenPublish {
2222
group = 'com.alphacephei'

nodejs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "vosk",
3-
"version": "0.3.44",
3+
"version": "0.3.45",
44
"description": "Node binding for continuous offline voice recoginition with Vosk library.",
55
"repository": {
66
"type": "git",

python/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ def get_tag(self):
4545

4646
setuptools.setup(
4747
name="vosk",
48-
version="0.3.44",
48+
version="0.3.45",
4949
author="Alpha Cephei Inc",
5050
author_email="[email protected]",
5151
description="Offline open source speech recognition API based on Kaldi and Vosk",

ruby/vosk.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Gem::Specification.new do |s|
22
s.name = "vosk"
3-
s.version = "0.3.44"
3+
s.version = "0.3.45"
44
s.summary = "Offline speech recognition API"
55
s.description = "Vosk is an offline open source speech recognition toolkit. It enables speech recognition for 20+ languages and dialects - English, Indian English, German, French, Spanish, Portuguese, Chinese, Russian, Turkish, Vietnamese, Italian, Dutch, Catalan, Arabic, Greek, Farsi, Filipino, Ukrainian, Kazakh, Swedish, Japanese, Esperanto, Hindi, Czech, Polish. More to come."
66
s.authors = ["Alpha Cephei Inc"]

webjs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "vosk-js",
3-
"version": "0.3.44",
3+
"version": "0.3.45",
44
"description": "Node binding for continuous voice recoginition through vosk-api.",
55
"repository": {
66
"type": "git",

0 commit comments

Comments
 (0)