Change: Heading for 1.12 now (#8862)

This commit is contained in:
Patric Stout
2021-03-14 20:47:31 +01:00
committed by GitHub
parent 74c98db1b6
commit 9bfa7198fd
12 changed files with 28 additions and 8 deletions

View File

@@ -25,7 +25,7 @@
*/
static bool CheckAPIVersion(const char *api_version)
{
static const std::set<std::string> versions = { "0.7", "1.0", "1.1", "1.2", "1.3", "1.4", "1.5", "1.6", "1.7", "1.8", "1.9", "1.10", "1.11" };
static const std::set<std::string> versions = { "0.7", "1.0", "1.1", "1.2", "1.3", "1.4", "1.5", "1.6", "1.7", "1.8", "1.9", "1.10", "1.11", "1.12" };
return versions.find(api_version) != versions.end();
}