Skip to content

Commit e3e134c

Browse files
bmehta001Copilot
andauthored
Cherry-pick #775 to rel-1.2.1: Bump FLCore to 1.2.1 / ORT-GenAI to 0.14.1 (#776)
Cherry-picks #775 (commit 7710b97) onto `releases/rel-1.2.1`. Bumps `sdk/` pins to FLCore `1.2.1` + ORT-GenAI `0.14.1`; ORT stays at `1.26.0`. Clean cherry-pick, no conflicts. Original PR: #775 Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent 374f285 commit e3e134c

6 files changed

Lines changed: 16 additions & 16 deletions

File tree

sdk/cpp/CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,9 +81,9 @@ endif()
8181
# -----------------------------
8282
if(WIN32)
8383

84-
set(FL_CORE_VERSION "1.2.0" CACHE STRING "Microsoft.AI.Foundry.Local.Core NuGet version")
84+
set(FL_CORE_VERSION "1.2.1" CACHE STRING "Microsoft.AI.Foundry.Local.Core NuGet version")
8585
set(FL_ORT_VERSION "1.26.0" CACHE STRING "Microsoft.ML.OnnxRuntime.Foundry NuGet version")
86-
set(FL_ORTGENAI_VERSION "0.14.0" CACHE STRING "Microsoft.ML.OnnxRuntimeGenAI.Foundry NuGet version")
86+
set(FL_ORTGENAI_VERSION "0.14.1" CACHE STRING "Microsoft.ML.OnnxRuntimeGenAI.Foundry NuGet version")
8787
set(FL_NATIVE_DEPS_DIR "${CMAKE_CURRENT_BINARY_DIR}/_native_deps")
8888

8989
function(fl_ensure_nuget_package PKG_NAME PKG_VERSION)

sdk/cpp/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,9 +61,9 @@ This uses the `x64-debug` preset which:
6161
- Resolves C++ dependencies via **vcpkg** (`nlohmann-json`, `ms-gsl`, `gtest`)
6262
- Builds with the `x64-windows-static-md` triplet
6363
- Auto-downloads native runtime DLLs via **NuGet**:
64-
- `Microsoft.AI.Foundry.Local.Core` (1.2.0) — Foundry Local core runtime
64+
- `Microsoft.AI.Foundry.Local.Core` (1.2.1) — Foundry Local core runtime
6565
- `Microsoft.ML.OnnxRuntime.Foundry` (1.26.0) — ONNX Runtime
66-
- `Microsoft.ML.OnnxRuntimeGenAI.Foundry` (0.14.0) — ONNX Runtime GenAI
66+
- `Microsoft.ML.OnnxRuntimeGenAI.Foundry` (0.14.1) — ONNX Runtime GenAI
6767

6868
NuGet packages are cached in `out/build/<preset>/_native_deps/` and only downloaded on first configure. Runtime DLLs are automatically copied next to executables via post-build steps.
6969

sdk/deps_versions.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
{
22
"foundry-local-core": {
3-
"nuget": "1.2.0",
4-
"python": "1.2.0"
3+
"nuget": "1.2.1",
4+
"python": "1.2.1"
55
},
66
"onnxruntime": {
77
"version": "1.26.0"
88
},
99
"onnxruntime-genai": {
10-
"version": "0.14.0"
10+
"version": "0.14.1"
1111
}
1212
}

sdk/deps_versions_winml.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"foundry-local-core": {
3-
"nuget": "1.2.0",
4-
"python": "1.2.0"
3+
"nuget": "1.2.1",
4+
"python": "1.2.1"
55
},
66
"windows-ai-machinelearning": {
77
"version": "2.1.1"
@@ -10,6 +10,6 @@
1010
"version": "1.26.0"
1111
},
1212
"onnxruntime-genai": {
13-
"version": "0.14.0"
13+
"version": "0.14.1"
1414
}
1515
}

sdk/python/requirements-winml.txt

Lines changed: 2 additions & 2 deletions
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.2.0
5+
foundry-local-core-winml==1.2.1
66
onnxruntime-core==1.26.0
7-
onnxruntime-genai-core==0.14.0
7+
onnxruntime-genai-core==0.14.1

sdk/python/requirements.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ openai>=2.24.0
55
# - Linux x86_64: onnxruntime-gpu / onnxruntime-genai-cuda (CUDA-enabled wheels).
66
# - Linux aarch64: onnxruntime / onnxruntime-genai (the CUDA variants do not ship aarch64 binaries).
77
# - Other platforms: onnxruntime-core / onnxruntime-genai-core (cross-platform variants).
8-
foundry-local-core==1.2.0
8+
foundry-local-core==1.2.1
99
onnxruntime-core==1.26.0; sys_platform != "linux"
1010
onnxruntime-gpu==1.26.0; sys_platform == "linux" and platform_machine == "x86_64"
1111
onnxruntime==1.26.0; sys_platform == "linux" and platform_machine == "aarch64"
12-
onnxruntime-genai-core==0.14.0; sys_platform != "linux"
13-
onnxruntime-genai-cuda==0.14.0; sys_platform == "linux" and platform_machine == "x86_64"
14-
onnxruntime-genai==0.14.0; sys_platform == "linux" and platform_machine == "aarch64"
12+
onnxruntime-genai-core==0.14.1; sys_platform != "linux"
13+
onnxruntime-genai-cuda==0.14.1; sys_platform == "linux" and platform_machine == "x86_64"
14+
onnxruntime-genai==0.14.1; sys_platform == "linux" and platform_machine == "aarch64"

0 commit comments

Comments
 (0)