From 232f9473c748ae8d28a4d2925aaa9cadde65e982 Mon Sep 17 00:00:00 2001 From: Matthew Woehlke Date: Thu, 9 Jul 2026 11:10:31 -0400 Subject: [PATCH] CPS: Fix export version Commit a5b38fb898 (CPS: Implement exporting of file sets, 2026-06-29) added support for exporting file sets, but neglected to bump the CPS version to the schema version that added file sets. While it happens that this is somewhat fortuitous, since prior to the previous commit, this would have resulted in writing CPS files that we couldn't read, it still needs to be fixed. --- Source/cmExportPackageInfoGenerator.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/cmExportPackageInfoGenerator.cxx b/Source/cmExportPackageInfoGenerator.cxx index 2552a14113..e994eb7a77 100644 --- a/Source/cmExportPackageInfoGenerator.cxx +++ b/Source/cmExportPackageInfoGenerator.cxx @@ -34,7 +34,7 @@ #include "cmTarget.h" #include "cmTargetTypes.h" -static std::string const kCPS_VERSION_STR = "0.14.1"; +static std::string const kCPS_VERSION_STR = "0.15.0"; cmExportPackageInfoGenerator::cmExportPackageInfoGenerator( cmPackageInfoArguments arguments)