Skip to content

Commit ee11e88

Browse files
🔖 set version to 0.5.0-rc.0 (#93)
1 parent 8642cb0 commit ee11e88

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ configure_package_config_file(
6565

6666
write_basic_package_version_file(
6767
${CMAKE_CURRENT_BINARY_DIR}/jwt-cpp-config-version.cmake
68-
VERSION 0.5.0-dev
68+
VERSION 0.5.0-rc.0
6969
COMPATIBILITY ExactVersion)
7070

7171
install(FILES "${JWT_INCLUDE_PATH}/jwt-cpp/jwt.h" DESTINATION include/jwt-cpp)

Doxyfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ PROJECT_NAME = "JWT-C++"
3838
# could be handy for archiving the generated documentation or if some version
3939
# control system is used.
4040

41-
PROJECT_NUMBER = 0.5.0-dev
41+
PROJECT_NUMBER = 0.5.0-rc.0
4242

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

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ For the sake of completeness, here is a list of all supported algorithms:
2929

3030
## Overview
3131

32-
Since 0.5.0-dev, there is no hard dependency on a JSON library; instead there's a generic `jwt::basic_claim` which is templated around the types required.It requires a traits type, which defines types for a value, object, array, string, number, integer and boolean, as well as methods to translate between them.
32+
Since 0.5.0-rc.0, there is no hard dependency on a JSON library; instead there's a generic `jwt::basic_claim` which is templated around the types required.It requires a traits type, which defines types for a value, object, array, string, number, integer and boolean, as well as methods to translate between them.
3333

3434
```cpp
3535
jwt::basic_claim<my_favorite_json_library_traits> claim(json::object({{"json", true},{"example", 0}}));

0 commit comments

Comments
 (0)