Skip to content

Commit a8afbc8

Browse files
committed
Update drogon version to v1.0.0-beta7
1 parent aa26e9a commit a8afbc8

File tree

2 files changed

+36
-4
lines changed

2 files changed

+36
-4
lines changed

CMakeLists.txt

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ set(DROGON_MINOR_VERSION 0)
99
set(DROGON_PATCH_VERSION 0)
1010
set(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
1515
set(INSTALL_LIB_DIR lib CACHE PATH "Installation directory for libraries")
@@ -57,8 +57,7 @@ target_include_directories(
5757
list(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)
6261
add_subdirectory(trantor)
6362

6463
target_link_libraries(${PROJECT_NAME} PUBLIC trantor)

ChangeLog.md

Lines changed: 34 additions & 1 deletion
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)