From 4a42a6fbaea9fe62b320f61b9f47e36e095192ac Mon Sep 17 00:00:00 2001 From: The-EDev Date: Sat, 31 Oct 2020 23:56:50 +0300 Subject: [PATCH] bump server version to 0.2 also fixed a chmod issue in travis --- .travis.yml | 2 +- include/crow/http_server.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 77fbe467c..038e6db6f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -53,5 +53,5 @@ script: make -j4 && ctest -V -j4 after_success: - cd .. - if [ "$PUSH_COVERAGE" == "ON" ]; then coveralls -i include --exclude-pattern .*/http_parser_merged.h --exclude-pattern .*/TinySHA1.hpp --gcov-options '\-lp'; fi - - chmod +x generateDocumentationAndDeploy.sh + - chmod +x scripts/generateDocumentationAndDeploy.sh - if [ "$TRAVIS_BUILD_DOCS" == "ON" ]; then ./scripts/generateDocumentationAndDeploy.sh; fi diff --git a/include/crow/http_server.h b/include/crow/http_server.h index 7bce24148..a7039d639 100644 --- a/include/crow/http_server.h +++ b/include/crow/http_server.h @@ -218,7 +218,7 @@ namespace crow Handler* handler_; uint16_t concurrency_{1}; - std::string server_name_ = "Crow/0.1"; + std::string server_name_ = "Crow/0.2"; uint16_t port_; std::string bindaddr_; unsigned int roundrobin_index_{};