diff --git a/README.md b/README.md index 5bafd25d7d3c835d262515faf33512d9966db749..bc5b4cc4169166f794ed2a1f188a3ead5cfeecf1 100644 --- a/README.md +++ b/README.md @@ -111,8 +111,8 @@ onnxruntime-genai: - `ONNXRT_GENAI_GIT_URL`: Git URL to clone the sources from. - `ONNXRT_GENAI_GIT_TAG`: Git SHA for checkout. -> **NOTE**: This repository has been tested with `onnxruntime` version `v1.22.0` and -`onnxruntime-genai` version `v0.8.2`. +> **NOTE**: This repository has been tested with `onnxruntime` version `v1.22.1` and +`onnxruntime-genai` version `v0.8.3`. ## Quick start diff --git a/src/cpp/frameworks/onnxruntime_genai/CMakeLists.txt b/src/cpp/frameworks/onnxruntime_genai/CMakeLists.txt index 0528e41e30fbd05ecfb302cb648a8e2878be0da9..abcda09e75191f8ebd8d4ea33863bc3a566b158b 100644 --- a/src/cpp/frameworks/onnxruntime_genai/CMakeLists.txt +++ b/src/cpp/frameworks/onnxruntime_genai/CMakeLists.txt @@ -42,7 +42,7 @@ set(ONNX_BUILD_SHARED_LIBS OFF) set(ONNXRUNTIME_GIT_URL "https://github.com/microsoft/onnxruntime.git" CACHE STRING "Git URL for onnxruntime repo") -set(ONNXRUNTIME_GIT_TAG "v1.22.0" +set(ONNXRUNTIME_GIT_TAG "v1.22.1" CACHE STRING "Path where onnxruntime repo should be cloned") set(ONNXRUNTIME_SRC_DIR "${CMAKE_BINARY_DIR}/onnxruntime" @@ -113,8 +113,8 @@ set(ONNXRT_GENAI_SRC_DIR "${CMAKE_BINARY_DIR}/onnxruntime-genai" set(ONNXRT_GENAI_GIT_URL "https://github.com/microsoft/onnxruntime-genai.git" CACHE STRING "Git URL for onnxruntime-genai repo") -# Latest stable tag (June 2025) -set(ONNXRT_GENAI_GIT_TAG "v0.8.2" +# Latest stable tag (July 2025) +set(ONNXRT_GENAI_GIT_TAG "v0.8.3" CACHE STRING "Git tag / commit SHA for onnxruntime-genai repo") # --------------------------------------------------------------------