diff --git a/Source/cmPackageInfoReader.cxx b/Source/cmPackageInfoReader.cxx index 97a4d0c56b..66ab273ba6 100644 --- a/Source/cmPackageInfoReader.cxx +++ b/Source/cmPackageInfoReader.cxx @@ -129,7 +129,7 @@ bool CheckSchemaVersion(Json::Value const& data) // Check that we understand this version. return cmSystemTools::VersionCompare(cmSystemTools::OP_GREATER_EQUAL, version, "0.13") && - cmSystemTools::VersionCompare(cmSystemTools::OP_LESS, version, "1"); + cmSystemTools::VersionCompare(cmSystemTools::OP_LESS, version, "0.14"); // TODO Eventually this probably needs to return the version tuple, and // should share code with cmPackageInfoReader::ParseVersion.