File tree Expand file tree Collapse file tree 2 files changed +36
-4
lines changed
Expand file tree Collapse file tree 2 files changed +36
-4
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ set(DROGON_MINOR_VERSION 0)
99set (DROGON_PATCH_VERSION 0)
1010set (DROGON_VERSION
1111 ${DROGON_MAJOR_VERSION} .${DROGON_MINOR_VERSION} .${DROGON_PATCH_VERSION} )
12- set (PRE_RELEASE_STRING "beta6 " )
12+ set (PRE_RELEASE_STRING "beta7 " )
1313
1414# Offer the user the choice of overriding the installation directories
1515set (INSTALL_LIB_DIR lib CACHE PATH "Installation directory for libraries" )
@@ -57,8 +57,7 @@ target_include_directories(
5757list (APPEND INCLUDE_DIRS_FOR_DYNAMIC_VIEW
5858 ${PROJECT_SOURCE_DIR} /lib/inc
5959 ${PROJECT_SOURCE_DIR} /orm_lib/inc
60- ${PROJECT_SOURCE_DIR} /trantor
61- ${INSTALL_INCLUDE_DIR} )
60+ ${PROJECT_SOURCE_DIR} /trantor)
6261add_subdirectory (trantor)
6362
6463target_link_libraries (${PROJECT_NAME} PUBLIC trantor)
Original file line number Diff line number Diff line change @@ -4,6 +4,37 @@ All notable changes to this project will be documented in this file.
44
55## [ Unreleased]
66
7+ ## [ 1.0.0-beta7] - 2019-08-31
8+
9+ ### API change list
10+
11+ - Remove the default value parameter of some methods (#220 )
12+
13+ ### Changed
14+
15+ - Optimize DNS in HttpClient and WebSocketClient (support c-ares library).
16+
17+ - Reduce dependencies between declarations.
18+
19+ - Add database tests in the travis CI and add test cases to database tests.
20+
21+ - Reduce size of docker image.
22+
23+ - Make the framework API support chained calls.
24+
25+ - Add a synchronous join point for AOP.
26+
27+ - Modify the CMakeLists to modern cmake style.
28+
29+ ### Fixed
30+
31+ - Fix bugs in default return values of functions(#220 ),
32+
33+ - Fix a bug in the cmake configuration file when there's '+' in the building path.
34+
35+ - Fix a bug in drogon_ctl (when creating orm models)
36+
37+
738## [ 1.0.0-beta6] - 2019-08-08
839
940### API change list
@@ -106,7 +137,9 @@ All notable changes to this project will be documented in this file.
106137
107138## [ 1.0.0-beta1] - 2019-06-11
108139
109- [ Unreleased ] : https://github.com/an-tao/drogon/compare/v1.0.0-beta6...HEAD
140+ [ Unreleased ] : https://github.com/an-tao/drogon/compare/v1.0.0-beta7...HEAD
141+
142+ [ 1.0.0-beta7 ] : https://github.com/an-tao/drogon/compare/v1.0.0-beta6...v1.0.0-beta7
110143
111144[ 1.0.0-beta6 ] : https://github.com/an-tao/drogon/compare/v1.0.0-beta5...v1.0.0-beta6
112145
You can’t perform that action at this time.
0 commit comments