From 4e2f9acdfb0513b86e5275850bff41b45459d72a Mon Sep 17 00:00:00 2001 From: Ruixiang Du Date: Sat, 11 Jul 2026 23:56:27 +0800 Subject: [PATCH] build(cmake): sync project VERSION to 0.7.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The CMake project VERSION had drifted from the git tags — it was stuck at 0.6.5 even through the v0.6.6 release, so the generated quickvizConfigVersion.cmake advertised 0.6.5. With COMPATIBILITY SameMajorVersion, that makes find_package(quickviz 0.7.0) — or even 0.6.6 — fail to resolve (requested version > reported version). Bump to 0.7.0 to match the freshly cut v0.7.0 release, and keep it in lockstep with tags going forward. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index f94a142..9223683 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -6,7 +6,7 @@ if (CCACHE_PROGRAM) set_property(GLOBAL PROPERTY RULE_LAUNCH_COMPILE "${CCACHE_PROGRAM}") endif () -project(quickviz VERSION 0.6.5) +project(quickviz VERSION 0.7.0) message(STATUS "------------------------------------------------") if (PROJECT_NAME STREQUAL CMAKE_PROJECT_NAME)