Skip to content

Commit af62a6f

Browse files
authored
Merge pull request #63 from osqp/im/cmakever
Raise CMake minimum to 3.11 to be compatible with CMake 4.0
2 parents 138fdac + 9a85d4b commit af62a6f

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
Version 0.1.9 (28 Aug 2025)
2+
---------------------------------
3+
* Bump CMake minimum version to 3.11 for compatibility with CMake >= 4.0
4+
15
Version 0.1.8 (17 Mar 2025)
26
---------------------------------
37
* Bump CMake minimum version to 3.5 for compatibility with CMake >= 3.27.

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# Minimum version required
2-
cmake_minimum_required (VERSION 3.5)
2+
cmake_minimum_required (VERSION 3.11)
33

44
set(QDLDL_VERSION_MAJOR "0")
55
set(QDLDL_VERSION_MINOR "1")
6-
set(QDLDL_VERSION_PATCH "8")
6+
set(QDLDL_VERSION_PATCH "9")
77
set(QDLDL_VERSION "${QDLDL_VERSION_MAJOR}.${QDLDL_VERSION_MINOR}.${QDLDL_VERSION_PATCH}")
88

99
# Project name

0 commit comments

Comments
 (0)