From 42e820754c7e990ab98b5adc17ec8c03789a9258 Mon Sep 17 00:00:00 2001 From: Steve Markgraf Date: Thu, 2 Nov 2023 13:29:20 +0100 Subject: [PATCH] change version to 2.0.0 Signed-off-by: Steve Markgraf --- CMakeLists.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index e2946ba..bd7b143 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -41,9 +41,9 @@ include(GenerateExportHeader) include(CMakePackageConfigHelpers) # Set the version information here -set(VERSION_INFO_MAJOR_VERSION 0) # increment major on api compatibility changes -set(VERSION_INFO_MINOR_VERSION 6) # increment minor on feature-level changes -set(VERSION_INFO_PATCH_VERSION git) # increment patch for bug fixes and docs +set(VERSION_INFO_MAJOR_VERSION 2) # increment major on api compatibility changes +set(VERSION_INFO_MINOR_VERSION 0) # increment minor on feature-level changes +set(VERSION_INFO_PATCH_VERSION 0) # increment patch for bug fixes and docs include(Version) # setup version info ########################################################################