Skip to content

Commit 0ab537b

Browse files
authored
Windows patch v2.0.1 (#126)
1 parent f97f4b8 commit 0ab537b

File tree

14 files changed

+14
-23
lines changed

14 files changed

+14
-23
lines changed

.github/workflows/python-demos.yml

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -52,15 +52,6 @@ jobs:
5252
.venv\Scripts\activate
5353
echo PATH=$PATH >> $GITHUB_ENV
5454
55-
# ************** REMOVE AFTER RELEASE ********************
56-
- name: Build binding
57-
run: |
58-
python3 -m pip install wheel setuptools
59-
python3 setup.py sdist bdist_wheel
60-
python3 -m pip install --force-reinstall dist/picollm-2.0.0-py3-none-any.whl
61-
working-directory: binding/python
62-
# ********************************************************
63-
6455
- name: Install Python dependencies
6556
run: python3 -m pip install -r requirements.txt --force-reinstall
6657

binding/dotnet/PicoLLM/PicoLLM.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>2.0.0</Version>
4+
<Version>2.0.1</Version>
55
<Authors>Picovoice</Authors>
66
<Company />
77
<Product>picoLLM Inference Engine</Product>

binding/dotnet/PicoLLM/PicoLLM.netstandard2.0.targets

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
66
<Visible>false</Visible>
77
</Content>
8-
<Content Include="$(MSBuildThisFileDirectory)pv_ypu_impl_cuda.dll">
9-
<Link>pv_ypu_impl_cuda.dll</Link>
8+
<Content Include="$(MSBuildThisFileDirectory)pv_ypu_impl_cuda_picollm.dll">
9+
<Link>pv_ypu_impl_cuda_picollm.dll</Link>
1010
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
1111
<Visible>false</Visible>
1212
</Content>

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/picollm-node",
3-
"version": "2.0.0",
3+
"version": "2.0.1",
44
"description": "Picovoice picoLLM 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
@@ -54,7 +54,7 @@
5454

5555
setuptools.setup(
5656
name="picollm",
57-
version="2.0.0",
57+
version="2.0.1",
5858
author="Picovoice",
5959
author_email="hello@picovoice.ai",
6060
description="picoLLM Inference Engine",

demo/dotnet/PicoLLMDemo/PicoLLMDemo.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,6 @@
1717
<AssemblyName>PicoLLMCompletionDemo</AssemblyName>
1818
</PropertyGroup>
1919
<ItemGroup>
20-
<PackageReference Include="PicoLLM" Version="2.0.0" />
20+
<PackageReference Include="PicoLLM" Version="2.0.1" />
2121
</ItemGroup>
2222
</Project>

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/picollm-node-demo",
3-
"version": "1.3.1",
3+
"version": "2.0.1",
44
"description": "Picovoice PicoLLM Node.js chat and completion demos",
55
"scripts": {
66
"chat": "node chat.js",
@@ -19,7 +19,7 @@
1919
"author": "Picovoice Inc.",
2020
"license": "Apache-2.0",
2121
"dependencies": {
22-
"@picovoice/picollm-node": "~2.0.0",
22+
"@picovoice/picollm-node": "2.0.1",
2323
"commander": "^6.1.0",
2424
"prettier": "^2.6.2"
2525
},

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/picollm-node@~2.0.0":
6-
version "2.0.0"
7-
resolved "https://registry.yarnpkg.com/@picovoice/picollm-node/-/picollm-node-2.0.0.tgz#0981c0e0252313ab02e6f755aaf2ff475c2d247b"
8-
integrity sha512-2bnuKl3Rf+Cakuh7lfOyZYPaL4ki9eVMpEX336VjYczmy0zUtvOOZBg7OWNPePnKr7rHUDGAy4+MB3PeHQUsxQ==
5+
"@picovoice/picollm-node@2.0.1":
6+
version "2.0.1"
7+
resolved "https://registry.yarnpkg.com/@picovoice/picollm-node/-/picollm-node-2.0.1.tgz#096dfd5c4624494cba2a2237580e3f43beba9272"
8+
integrity sha512-At6oSw51aA1CDH0VjK/Dm+X5Et7lkh2EPz05kb4Uv++Bs0keiS9rEXY7HWYQHooMzI17zGO/5SqOxoSQHlBlDg==
99

1010
commander@^6.1.0:
1111
version "6.2.1"

demo/python/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
picollm==2.0.0
1+
picollm==2.0.1

demo/python/setup.py

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

3131
setuptools.setup(
3232
name="picollmdemo",
33-
version="2.0.0",
33+
version="2.0.1",
3434
author="Picovoice",
3535
author_email="hello@picovoice.ai",
3636
description="picoLLM Inference Engine demos",

0 commit comments

Comments
 (0)