From 4f942602ceb352e11c0a55015e5679a383e7c345 Mon Sep 17 00:00:00 2001 From: An Tao Date: Tue, 30 Jul 2019 21:10:21 +0800 Subject: [PATCH] Bump version to v1.0.0-beta4 (#201) --- ChangeLog.md | 25 ++++++++++++++++++++++++- get_version.sh | 2 +- 2 files changed, 25 insertions(+), 2 deletions(-) diff --git a/ChangeLog.md b/ChangeLog.md index 8f637a65..68a71217 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -4,6 +4,27 @@ All notable changes to this project will be documented in this file. ## [Unreleased] +## [1.0.0-beta4] - 2019-07-30 + +### API change list + +- HttpRequest::query() returns a const reference of std::string instead of a string_view +- WebSocketConnection::setContext(), WebSocketConnection::getContext(), etc. +- Remove the config.h from public API. + +### Added + +- None + +### Changed + +- Modify the CMakeLists.txt +- Modify the get_version.sh + +### Fixed + +- None + ## [1.0.0-beta3] - 2019-07-28 ### API change list @@ -51,7 +72,9 @@ All notable changes to this project will be documented in this file. ## [1.0.0-beta1] - 2019-06-11 -[Unreleased]: https://github.com/an-tao/drogon/compare/v1.0.0-beta3...HEAD +[Unreleased]: https://github.com/an-tao/drogon/compare/v1.0.0-beta4...HEAD + +[1.0.0-beta4]: https://github.com/an-tao/drogon/compare/v1.0.0-beta3...v1.0.0-beta4 [1.0.0-beta3]: https://github.com/an-tao/drogon/compare/v1.0.0-beta2...v1.0.0-beta3 diff --git a/get_version.sh b/get_version.sh index f9e5ba5a..c0cd30e2 100755 --- a/get_version.sh +++ b/get_version.sh @@ -3,7 +3,7 @@ GIT_VER=$(git log|grep ^commit|wc -l|sed -e "s/^ *//") MD5=$(git log|head -1|awk '{printf $2}') TMP_FILE=/tmp/version -echo "#define VERSION \"1.0.0.beta3.$GIT_VER\"" > ${TMP_FILE} +echo "#define VERSION \"1.0.0.beta4.$GIT_VER\"" > ${TMP_FILE} echo "#define VERSION_MD5 \"$MD5\"" >> ${TMP_FILE} if [ ! -f $1 ];then mv -f ${TMP_FILE} $1