From ee11e8873e9388bf5d7a3ca8167aedb56d6efc51 Mon Sep 17 00:00:00 2001 From: Chris Mc Date: Wed, 29 Jul 2020 14:15:41 -0400 Subject: [PATCH] :bookmark: set version to 0.5.0-rc.0 (#93) --- CMakeLists.txt | 2 +- Doxyfile | 2 +- README.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index a702c1171..0945a0614 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -65,7 +65,7 @@ configure_package_config_file( write_basic_package_version_file( ${CMAKE_CURRENT_BINARY_DIR}/jwt-cpp-config-version.cmake - VERSION 0.5.0-dev + VERSION 0.5.0-rc.0 COMPATIBILITY ExactVersion) install(FILES "${JWT_INCLUDE_PATH}/jwt-cpp/jwt.h" DESTINATION include/jwt-cpp) diff --git a/Doxyfile b/Doxyfile index 5c7629657..7b2a248be 100644 --- a/Doxyfile +++ b/Doxyfile @@ -38,7 +38,7 @@ PROJECT_NAME = "JWT-C++" # could be handy for archiving the generated documentation or if some version # control system is used. -PROJECT_NUMBER = 0.5.0-dev +PROJECT_NUMBER = 0.5.0-rc.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/README.md b/README.md index 0f11ee6e6..bd98354d8 100644 --- a/README.md +++ b/README.md @@ -29,7 +29,7 @@ For the sake of completeness, here is a list of all supported algorithms: ## Overview -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. +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. ```cpp jwt::basic_claim claim(json::object({{"json", true},{"example", 0}}));