Update drogon version to v1.0.0-beta7

This commit is contained in:
antao 2019-08-31 18:39:46 +08:00
parent aa26e9a903
commit a8afbc8cee
2 changed files with 36 additions and 4 deletions

View File

@ -9,7 +9,7 @@ set(DROGON_MINOR_VERSION 0)
set(DROGON_PATCH_VERSION 0)
set(DROGON_VERSION
${DROGON_MAJOR_VERSION}.${DROGON_MINOR_VERSION}.${DROGON_PATCH_VERSION})
set(PRE_RELEASE_STRING "beta6")
set(PRE_RELEASE_STRING "beta7")
# Offer the user the choice of overriding the installation directories
set(INSTALL_LIB_DIR lib CACHE PATH "Installation directory for libraries")
@ -57,8 +57,7 @@ target_include_directories(
list(APPEND INCLUDE_DIRS_FOR_DYNAMIC_VIEW
${PROJECT_SOURCE_DIR}/lib/inc
${PROJECT_SOURCE_DIR}/orm_lib/inc
${PROJECT_SOURCE_DIR}/trantor
${INSTALL_INCLUDE_DIR})
${PROJECT_SOURCE_DIR}/trantor)
add_subdirectory(trantor)
target_link_libraries(${PROJECT_NAME} PUBLIC trantor)

View File

@ -4,6 +4,37 @@ All notable changes to this project will be documented in this file.
## [Unreleased]
## [1.0.0-beta7] - 2019-08-31
### API change list
- Remove the default value parameter of some methods (#220)
### Changed
- Optimize DNS in HttpClient and WebSocketClient (support c-ares library).
- Reduce dependencies between declarations.
- Add database tests in the travis CI and add test cases to database tests.
- Reduce size of docker image.
- Make the framework API support chained calls.
- Add a synchronous join point for AOP.
- Modify the CMakeLists to modern cmake style.
### Fixed
- Fix bugs in default return values of functions(#220),
- Fix a bug in the cmake configuration file when there's '+' in the building path.
- Fix a bug in drogon_ctl (when creating orm models)
## [1.0.0-beta6] - 2019-08-08
### API change list
@ -106,7 +137,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-beta6...HEAD
[Unreleased]: https://github.com/an-tao/drogon/compare/v1.0.0-beta7...HEAD
[1.0.0-beta7]: https://github.com/an-tao/drogon/compare/v1.0.0-beta6...v1.0.0-beta7
[1.0.0-beta6]: https://github.com/an-tao/drogon/compare/v1.0.0-beta5...v1.0.0-beta6