Skip to content

Commit 9850971

Browse files
Update version to 0.7.1
1 parent 482f4f1 commit 9850971

File tree

5 files changed

+5
-4
lines changed

5 files changed

+5
-4
lines changed

.github/ISSUE_TEMPLATE/bug-report.yml

+1
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ body:
3737
label: Version
3838
description: What version of our software are you running?
3939
options:
40+
- 0.7.1
4041
- 0.7.0
4142
- 0.6.0
4243
- 0.5.2

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ endif()
143143
configure_package_config_file(
144144
${CMAKE_CURRENT_LIST_DIR}/cmake/jwt-cpp-config.cmake.in ${CMAKE_CURRENT_BINARY_DIR}/jwt-cpp-config.cmake
145145
INSTALL_DESTINATION ${JWT_CMAKE_FILES_INSTALL_DIR})
146-
write_basic_package_version_file(${CMAKE_CURRENT_BINARY_DIR}/jwt-cpp-config-version.cmake VERSION 0.7.0
146+
write_basic_package_version_file(${CMAKE_CURRENT_BINARY_DIR}/jwt-cpp-config-version.cmake VERSION 0.7.1
147147
COMPATIBILITY ExactVersion)
148148

149149
install(TARGETS jwt-cpp EXPORT jwt-cpp-targets PUBLIC_HEADER DESTINATION ${CMAKE_INSTALL_INCLUDEDIR})

docs/Doxyfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ PROJECT_NAME = JWT-CPP
4848
# could be handy for archiving the generated documentation or if some version
4949
# control system is used.
5050

51-
PROJECT_NUMBER = v0.7.0
51+
PROJECT_NUMBER = v0.7.1
5252

5353
# Using the PROJECT_BRIEF tag one can provide an optional one line description
5454
# for a project that appears at the top of each page and should give viewer a

nuget/jwt-cpp.nuspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<package>
33
<metadata>
44
<id>jwt-cpp</id>
5-
<version>0.7.0</version>
5+
<version>0.7.1</version>
66
<authors>Thalhammer; prince-chrismc</authors>
77
<owners>Thalhammer; prince-chrismc</owners>
88
<projectUrl>https://github.com/Thalhammer/jwt-cpp</projectUrl>

tests/cmake/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ project(jwt-cpp-installation-tests)
33

44
set(TEST CACHE STRING "The test source file to be used")
55

6-
find_package(jwt-cpp 0.7.0 EXACT REQUIRED CONFIG)
6+
find_package(jwt-cpp 0.7.1 EXACT REQUIRED CONFIG)
77

88
add_executable(test-project ${TEST}.cpp)
99
target_link_libraries(test-project jwt-cpp::jwt-cpp)

0 commit comments

Comments
 (0)