Skip to content

Commit 6cd5411

Browse files
committed
Update version to rc5
1 parent e0ec693 commit 6cd5411

File tree

7 files changed

+9
-9
lines changed

7 files changed

+9
-9
lines changed

.github/workflows/samples-integration-test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ jobs:
171171
# Note: /p:TreatWarningsAsErrors=false avoids failing on SDK doc warnings
172172
dotnet pack sdk/cs/src/Microsoft.AI.Foundry.Local.csproj `
173173
-o local-packages `
174-
/p:Version=1.0.0-rc4 `
174+
/p:Version=1.0.0-rc5 `
175175
/p:IsPacking=true `
176176
/p:TreatWarningsAsErrors=false `
177177
--configuration Release
@@ -180,7 +180,7 @@ jobs:
180180
if ($IsWindows) {
181181
dotnet pack sdk/cs/src/Microsoft.AI.Foundry.Local.csproj `
182182
-o local-packages `
183-
/p:Version=1.0.0-rc4 `
183+
/p:Version=1.0.0-rc5 `
184184
/p:UseWinML=true `
185185
/p:IsPacking=true `
186186
/p:TreatWarningsAsErrors=false `

sdk/cs/src/Microsoft.AI.Foundry.Local.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,8 +100,8 @@
100100
<PropertyGroup>
101101
<!-- default version unless overridden during dotnet build/restore command -->
102102
<FoundryLocalCoreWinMLVersion Condition="'$(FoundryLocalCoreVersion)' != ''">$(FoundryLocalCoreVersion)</FoundryLocalCoreWinMLVersion>
103-
<FoundryLocalCoreWinMLVersion Condition="'$(FoundryLocalCoreVersion)' == ''">1.0.0-rc4</FoundryLocalCoreWinMLVersion>
104-
<FoundryLocalCoreVersion Condition="'$(FoundryLocalCoreVersion)' == ''">1.0.0-rc4</FoundryLocalCoreVersion> </PropertyGroup>
103+
<FoundryLocalCoreWinMLVersion Condition="'$(FoundryLocalCoreVersion)' == ''">1.0.0-rc5</FoundryLocalCoreWinMLVersion>
104+
<FoundryLocalCoreVersion Condition="'$(FoundryLocalCoreVersion)' == ''">1.0.0-rc5</FoundryLocalCoreVersion> </PropertyGroup>
105105

106106
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
107107
<TreatWarningsAsErrors>True</TreatWarningsAsErrors>

sdk/js/script/install-standard.cjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ const os = require('os');
99
const { NUGET_FEED, ORT_NIGHTLY_FEED, runInstall } = require('./install-utils.cjs');
1010

1111
const ARTIFACTS = [
12-
{ name: 'Microsoft.AI.Foundry.Local.Core', version: '1.0.0-rc4', feed: ORT_NIGHTLY_FEED },
12+
{ name: 'Microsoft.AI.Foundry.Local.Core', version: '1.0.0-rc5', feed: ORT_NIGHTLY_FEED },
1313
{ name: os.platform() === 'linux' ? 'Microsoft.ML.OnnxRuntime.Gpu.Linux' : 'Microsoft.ML.OnnxRuntime.Foundry', version: '1.24.4', feed: NUGET_FEED },
1414
{ name: 'Microsoft.ML.OnnxRuntimeGenAI.Foundry', version: '0.13.1', feed: NUGET_FEED },
1515
];

sdk/js/script/install-winml.cjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ const platformKey = `${process.platform}-${process.arch}`;
1919
const binDir = path.join(sdkRoot, 'node_modules', '@foundry-local-core', platformKey);
2020

2121
const ARTIFACTS = [
22-
{ name: 'Microsoft.AI.Foundry.Local.Core.WinML', version: '1.0.0-rc4', feed: ORT_NIGHTLY_FEED },
22+
{ name: 'Microsoft.AI.Foundry.Local.Core.WinML', version: '1.0.0-rc5', feed: ORT_NIGHTLY_FEED },
2323
{ name: 'Microsoft.ML.OnnxRuntime.Foundry', version: '1.23.2.3', feed: NUGET_FEED },
2424
{ name: 'Microsoft.ML.OnnxRuntimeGenAI.Foundry', version: '0.13.1', feed: NUGET_FEED },
2525
];

sdk/python/requirements-winml.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@ pydantic>=2.0.0
22
requests>=2.32.4
33
openai>=2.24.0
44
# WinML native binary packages from the ORT-Nightly PyPI feed.
5-
foundry-local-core-winml==1.0.0-rc4
5+
foundry-local-core-winml==1.0.0-rc5
66
onnxruntime-core==1.23.2.3
77
onnxruntime-genai-core==0.13.1

sdk/python/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ pydantic>=2.0.0
22
requests>=2.32.4
33
openai>=2.24.0
44
# Standard native binary packages from the ORT-Nightly PyPI feed.
5-
foundry-local-core==1.0.0-rc4
5+
foundry-local-core==1.0.0-rc5
66
onnxruntime-core==1.24.4; sys_platform != "linux"
77
onnxruntime-gpu==1.24.4; sys_platform == "linux"
88
onnxruntime-genai-core==0.13.1; sys_platform != "linux"

sdk/rust/build.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ const NUGET_FEED: &str = "https://api.nuget.org/v3/index.json";
77
const ORT_NIGHTLY_FEED: &str =
88
"https://pkgs.dev.azure.com/aiinfra/PublicPackages/_packaging/ORT-Nightly/nuget/v3/index.json";
99

10-
const CORE_VERSION: &str = "1.0.0-rc4";
10+
const CORE_VERSION: &str = "1.0.0-rc5";
1111
const ORT_VERSION: &str = "1.24.4";
1212
const GENAI_VERSION: &str = "0.13.1";
1313

0 commit comments

Comments
 (0)