From: Daniel Bevenius Date: Fri, 26 Sep 2025 15:34:42 +0000 (+0200) Subject: ggml : remove -dev suffix from release version (ggml/1355) X-Git-Tag: upstream/0.0.6641~9 X-Git-Url: https://git.djapps.eu/?a=commitdiff_plain;h=c9b1c06467aca8d30fafcab51292bcb285df5b0d;p=pkg%2Fggml%2Fsources%2Fllama.cpp ggml : remove -dev suffix from release version (ggml/1355) This commit removes the `-dev` suffix from the version string in CMakeLists.txt and the release script. The version will now be just be formatted as `MAJOR.MINOR.PATCH`. --- diff --git a/ggml/CMakeLists.txt b/ggml/CMakeLists.txt index 62d50d77..4699887c 100644 --- a/ggml/CMakeLists.txt +++ b/ggml/CMakeLists.txt @@ -5,7 +5,6 @@ project("ggml" C CXX ASM) set(GGML_VERSION_MAJOR 0) set(GGML_VERSION_MINOR 9) set(GGML_VERSION_PATCH 3) -set(GGML_VERSION_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) @@ -26,8 +25,8 @@ if(GIT_EXE) ) endif() -# Build the version string with optional -dev suffix and dirty flag -set(GGML_VERSION "${GGML_VERSION_BASE}${GGML_VERSION_DEV}") +# Build the version string with optional dirty flag +set(GGML_VERSION "${GGML_VERSION_BASE}") if(GGML_GIT_DIRTY AND NOT GGML_GIT_DIRTY EQUAL 0) set(GGML_VERSION "${GGML_VERSION}-dirty") endif()