From: Georgi Gerganov Date: Sat, 20 Sep 2025 13:44:23 +0000 (+0300) Subject: ggml : prepare for development of 0.9.2-dev X-Git-Url: https://git.djapps.eu/?a=commitdiff_plain;h=refs%2Fheads%2Fupstream%2Flatest;p=pkg%2Fggml%2Fsources%2Fggml ggml : prepare for development of 0.9.2-dev --- diff --git a/CMakeLists.txt b/CMakeLists.txt index a4f49a4f..34faaacc 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -4,8 +4,8 @@ project("ggml" C CXX ASM) ### GGML Version set(GGML_VERSION_MAJOR 0) set(GGML_VERSION_MINOR 9) -set(GGML_VERSION_PATCH 1) -set(GGML_VERSION_DEV "") # "-dev" for development, "" for releases +set(GGML_VERSION_PATCH 2) +set(GGML_VERSION_DEV "-dev") # "-dev" for development, "" for releases set(GGML_VERSION_BASE "${GGML_VERSION_MAJOR}.${GGML_VERSION_MINOR}.${GGML_VERSION_PATCH}") find_program(GIT_EXE NAMES git git.exe NO_CMAKE_FIND_ROOT_PATH)