invalid pc version otherwise for apk -- diff --git a/CMakeLists.txt b/CMakeLists.txt index 12c99c7..b8f7a83 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -50,7 +50,7 @@ OPTION(WITH_RPC "RPC for non-Windows" OFF) # Set the version information here set(VERSION_INFO_MAJOR_VERSION 0) # increment major on api compatibility changes set(VERSION_INFO_MINOR_VERSION 8) # increment minor on feature-level changes -set(VERSION_INFO_PATCH_VERSION git) # increment patch for bug fixes and docs +set(VERSION_INFO_PATCH_VERSION 0) # increment patch for bug fixes and docs include(Version) # setup version info ######################################################################## diff --git a/cmake/Modules/Version.cmake b/cmake/Modules/Version.cmake index 6f67fa4..5c35517 100644 --- a/cmake/Modules/Version.cmake +++ b/cmake/Modules/Version.cmake @@ -40,7 +40,7 @@ if(GIT_FOUND AND EXISTS ${CMAKE_SOURCE_DIR}/.git) WORKING_DIRECTORY ${CMAKE_SOURCE_DIR} ) else() - set(GIT_DESCRIBE "v${MAJOR_VERSION}.${MINOR_VERSION}.x-xxx-xunknown") + set(GIT_DESCRIBE "${MAJOR_VERSION}.${MINOR_VERSION}") endif() ########################################################################