diff --git a/CMakeLists.txt b/CMakeLists.txt index cc74aabcc..f9d07ee8a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -115,7 +115,7 @@ endif() configure_package_config_file( ${CMAKE_CURRENT_LIST_DIR}/cmake/jwt-cpp-config.cmake.in ${CMAKE_CURRENT_BINARY_DIR}/jwt-cpp-config.cmake INSTALL_DESTINATION ${JWT_CMAKE_FILES_INSTALL_DIR} PATH_VARS JWT_EXTERNAL_PICOJSON JWT_SSL_LIBRARY) -write_basic_package_version_file(${CMAKE_CURRENT_BINARY_DIR}/jwt-cpp-config-version.cmake VERSION 0.5.1 +write_basic_package_version_file(${CMAKE_CURRENT_BINARY_DIR}/jwt-cpp-config-version.cmake VERSION 0.6.0 COMPATIBILITY ExactVersion) install(TARGETS jwt-cpp EXPORT jwt-cpp-targets PUBLIC_HEADER DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}) diff --git a/Doxyfile b/Doxyfile index e0e2ae715..41343d736 100644 --- a/Doxyfile +++ b/Doxyfile @@ -38,7 +38,7 @@ PROJECT_NAME = JWT-CPP # could be handy for archiving the generated documentation or if some version # control system is used. -PROJECT_NUMBER = v0.5.1 +PROJECT_NUMBER = v0.6.0 # Using the PROJECT_BRIEF tag one can provide an optional one line description # for a project that appears at the top of each page and should give viewer a diff --git a/tests/cmake/CMakeLists.txt b/tests/cmake/CMakeLists.txt index 51df736f9..56acedc39 100644 --- a/tests/cmake/CMakeLists.txt +++ b/tests/cmake/CMakeLists.txt @@ -3,7 +3,7 @@ project(jwt-cpp-installation-tests) set(TEST CACHE STRING "The test source file to be used") -find_package(jwt-cpp 0.5.1 EXACT REQUIRED CONFIG) +find_package(jwt-cpp 0.6.0 EXACT REQUIRED CONFIG) add_executable(test-project ${TEST}.cpp) target_link_libraries(test-project jwt-cpp::jwt-cpp)