Skip to content

Commit 9460c2c

Browse files
authored
v4.0.1 desktop (#1505)
1 parent a47bd0b commit 9460c2c

File tree

22 files changed

+18
-30
lines changed

22 files changed

+18
-30
lines changed

.github/workflows/nodejs-demos.yml

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -40,12 +40,6 @@ jobs:
4040
with:
4141
node-version: ${{ matrix.node-version }}
4242

43-
# REMOVE AFTER RELEASE
44-
- name: Install binding
45-
run: yarn install && yarn build
46-
working-directory: binding/nodejs
47-
# REMOVE AFTER RELEASE
48-
4943
- name: Install dependencies
5044
run: yarn install
5145

@@ -70,12 +64,6 @@ jobs:
7064
steps:
7165
- uses: actions/checkout@v3
7266

73-
# REMOVE AFTER RELEASE
74-
- name: Install binding
75-
run: yarn install && yarn build
76-
working-directory: binding/nodejs
77-
# REMOVE AFTER RELEASE
78-
7967
- name: Install dependencies
8068
run: yarn install
8169

binding/dotnet/Porcupine/Porcupine.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
33
<TargetFrameworks>net6.0;netstandard2.0</TargetFrameworks>
4-
<Version>4.0.0</Version>
4+
<Version>4.0.1</Version>
55
<Authors>Picovoice</Authors>
66
<Company />
77
<Product>Porcupine Wake Word Engine</Product>

binding/java/build.gradle

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

99
ext {
1010
PUBLISH_GROUP_ID = 'ai.picovoice'
11-
PUBLISH_VERSION = '4.0.0'
11+
PUBLISH_VERSION = '4.0.1'
1212
PUBLISH_ARTIFACT_ID = 'porcupine-java'
1313
}
1414

binding/nodejs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@picovoice/porcupine-node",
3-
"version": "4.0.0",
3+
"version": "4.0.1",
44
"description": "Picovoice Porcupine Node.js binding",
55
"main": "dist/index.js",
66
"types": "dist/types/index.d.ts",

binding/python/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@
6666

6767
setuptools.setup(
6868
name="pvporcupine",
69-
version="4.0.0",
69+
version="4.0.1",
7070
author="Picovoice",
7171
author_email="hello@picovoice.ai",
7272
description="Porcupine wake word engine.",

demo/dotnet-vui/AvaloniaVUI/AvaloniaVUI.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,6 @@
1717
<PackageReference Include="Avalonia.Desktop" Version="0.9.12" />
1818
<PackageReference Include="Avalonia.ReactiveUI" Version="0.9.12" />
1919
<PackageReference Include="PvRecorder" Version="1.2.10" />
20-
<PackageReference Include="Porcupine" Version="4.0.0" />
20+
<PackageReference Include="Porcupine" Version="4.0.1" />
2121
</ItemGroup>
2222
</Project>

demo/dotnet/PorcupineDemo/PorcupineDemo.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
</PropertyGroup>
2020

2121
<ItemGroup>
22-
<PackageReference Include="Porcupine" Version="4.0.0" />
22+
<PackageReference Include="Porcupine" Version="4.0.1" />
2323
<PackageReference Include="PvRecorder" Version="1.2.10" />
2424
</ItemGroup>
2525
</Project>

demo/java/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,14 @@ sourceSets {
1515
}
1616

1717
dependencies {
18-
implementation 'ai.picovoice:porcupine-java:4.0.0'
18+
implementation 'ai.picovoice:porcupine-java:4.0.1'
1919
implementation 'commons-cli:commons-cli:1.4'
2020
}
2121

2222
jar {
2323
manifest {
2424
attributes "Main-Class": "ai.picovoice.porcupinedemo.MicDemo",
25-
"Class-Path" : "porcupine-4.0.0.jar;commons-cli-1.4.jar"
25+
"Class-Path" : "porcupine-4.0.1.jar;commons-cli-1.4.jar"
2626
}
2727
from sourceSets.main.output
2828
exclude "**/FileDemo.class"
@@ -33,7 +33,7 @@ jar {
3333
task fileDemoJar(type: Jar) {
3434
manifest {
3535
attributes "Main-Class": "ai.picovoice.porcupinedemo.FileDemo",
36-
"Class-Path" : "porcupine-4.0.0.jar;commons-cli-1.4.jar"
36+
"Class-Path" : "porcupine-4.0.1.jar;commons-cli-1.4.jar"
3737
}
3838
from sourceSets.main.output
3939
exclude "**/MicDemo.class"

demo/nodejs/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@picovoice/porcupine-node-demo",
3-
"version": "4.0.0",
3+
"version": "4.0.1",
44
"description": "Picovoice Porcupine Node.js file-based and microphone demos",
55
"scripts": {
66
"file": "node file.js",
@@ -16,7 +16,7 @@
1616
"author": "Picovoice, Inc.",
1717
"license": "Apache-2.0",
1818
"dependencies": {
19-
"@picovoice/porcupine-node": "4.0.0",
19+
"@picovoice/porcupine-node": "4.0.1",
2020
"@picovoice/pvrecorder-node": "~1.2.5",
2121
"commander": "^6.1.0",
2222
"wavefile": "^11.0.0"

demo/nodejs/yarn.lock

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
# yarn lockfile v1
33

44

5-
"@picovoice/porcupine-node@4.0.0":
6-
version "4.0.0"
7-
resolved "https://registry.yarnpkg.com/@picovoice/porcupine-node/-/porcupine-node-4.0.0.tgz#3ff3a4bda535a6734541f23a4e4fe3e76c3d96d6"
8-
integrity sha512-8DU1EvrPOU99mzoHCnhU9etEPMnCA9XCxNaUVl4y5xYTEar/8plYcPb2uPO+2/gcntWTvESRClQrZqvfuAEYUg==
5+
"@picovoice/porcupine-node@4.0.1":
6+
version "4.0.1"
7+
resolved "https://registry.yarnpkg.com/@picovoice/porcupine-node/-/porcupine-node-4.0.1.tgz#ff06b78b87337483d4629b11b7d527c697c3d241"
8+
integrity sha512-k5sEGIkt6AmuEx+94MCSmgPbcrbJ1F2Pf2TCN3aHeP4WFUpqfB0s3AE0jJTp/S9SmjAV7ORSmlF38yYFV6YxPg==
99

1010
"@picovoice/pvrecorder-node@~1.2.5":
1111
version "1.2.5"

0 commit comments

Comments
 (0)