Bump version to v1.0.0-beta5 (#204)

This commit is contained in:
An Tao 2019-08-01 13:40:53 +08:00 committed by GitHub
parent e566d9c451
commit 2817253eb4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 24 additions and 2 deletions

View File

@ -4,6 +4,26 @@ All notable changes to this project will be documented in this file.
## [Unreleased]
## [1.0.0-beta5] - 2019-08-01
### API change list
- None
### Added
- Add two methods to control if the Server header or the Date header is sent to clients with HTTP responses.
* void HttpAppFramework::enableServerHeader(bool);
* void HttpAppFramework::enableDateHeader(bool);
### Changed
- Support high performance batch mode of libpq.
### Fixed
- None
-
## [1.0.0-beta4] - 2019-07-30
### API change list
@ -72,7 +92,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-beta4...HEAD
[Unreleased]: https://github.com/an-tao/drogon/compare/v1.0.0-beta5...HEAD
[1.0.0-beta5]: https://github.com/an-tao/drogon/compare/v1.0.0-beta4...v1.0.0-beta5
[1.0.0-beta4]: https://github.com/an-tao/drogon/compare/v1.0.0-beta3...v1.0.0-beta4

View File

@ -5,7 +5,7 @@ MD5=$(git log|head -1|awk '{printf $2}')
MAJOR=1
MINOR=0
PATCH=0
PRE_RELEASE_STRING="beta4"
PRE_RELEASE_STRING="beta5"
TMP_FILE=/tmp/version
echo "#define MAJOR ${MAJOR}" > ${TMP_FILE}
echo "#define MINOR ${MINOR}" >> ${TMP_FILE}