From 46cf4eec6737d0f35e8d485e2914005fe8e16bbe Mon Sep 17 00:00:00 2001 From: Chris Mc Date: Tue, 1 Aug 2023 13:36:20 -0700 Subject: [PATCH] set version to 0.7.0 --- .github/ISSUE_TEMPLATE/bug-report.yml | 1 + CMakeLists.txt | 2 +- nuget/jwt-cpp.nuspec | 2 +- tests/cmake/CMakeLists.txt | 2 +- 4 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug-report.yml b/.github/ISSUE_TEMPLATE/bug-report.yml index a44c62813..3bd2cbfff 100644 --- a/.github/ISSUE_TEMPLATE/bug-report.yml +++ b/.github/ISSUE_TEMPLATE/bug-report.yml @@ -37,6 +37,7 @@ body: label: Version description: What version of our software are you running? options: + - 0.7.0 - 0.6.0 - 0.5.2 - Older (please let us know if the "What happened" box) diff --git a/CMakeLists.txt b/CMakeLists.txt index fc2e61273..5cd876f50 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -131,7 +131,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.6.0 +write_basic_package_version_file(${CMAKE_CURRENT_BINARY_DIR}/jwt-cpp-config-version.cmake VERSION 0.7.0 COMPATIBILITY ExactVersion) install(TARGETS jwt-cpp EXPORT jwt-cpp-targets PUBLIC_HEADER DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}) diff --git a/nuget/jwt-cpp.nuspec b/nuget/jwt-cpp.nuspec index 26957cb65..fc0c1e906 100644 --- a/nuget/jwt-cpp.nuspec +++ b/nuget/jwt-cpp.nuspec @@ -2,7 +2,7 @@ jwt-cpp - 0.6.0-nuget.3 + 0.7.0 Thalhammer; prince-chrismc Thalhammer; prince-chrismc https://github.com/Thalhammer/jwt-cpp diff --git a/tests/cmake/CMakeLists.txt b/tests/cmake/CMakeLists.txt index 56acedc39..b4f3935c1 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.6.0 EXACT REQUIRED CONFIG) +find_package(jwt-cpp 0.7.0 EXACT REQUIRED CONFIG) add_executable(test-project ${TEST}.cpp) target_link_libraries(test-project jwt-cpp::jwt-cpp)