Skip to content

Commit 08351cc

Browse files
committed
Bump version to 1.6.0
1 parent f736e12 commit 08351cc

File tree

3 files changed

+62
-4
lines changed

3 files changed

+62
-4
lines changed

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ CMAKE_DEPENDENT_OPTION(BUILD_SQLITE "Build with sqlite3 support" ON "BUILD_ORM"
2626
CMAKE_DEPENDENT_OPTION(BUILD_REDIS "Build with redis support" ON "BUILD_ORM" OFF)
2727

2828
set(DROGON_MAJOR_VERSION 1)
29-
set(DROGON_MINOR_VERSION 5)
30-
set(DROGON_PATCH_VERSION 1)
29+
set(DROGON_MINOR_VERSION 6)
30+
set(DROGON_PATCH_VERSION 0)
3131
set(DROGON_VERSION
3232
${DROGON_MAJOR_VERSION}.${DROGON_MINOR_VERSION}.${DROGON_PATCH_VERSION})
3333
set(DROGON_VERSION_STRING "${DROGON_VERSION}")

ChangeLog.md

Lines changed: 59 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,62 @@ All notable changes to this project will be documented in this file.
44

55
## [Unreleased]
66

7+
## [1.6.0] - 2021-05-15
8+
9+
### API changes list
10+
11+
- Add option to set default handler.
12+
13+
- Add the setTimeout() method to the DbClient class and the RedisClient class.
14+
15+
- Add the validateCert parameter to the newWebSocketClient method.
16+
17+
### Changed
18+
19+
- A few mini changes to drogon_ctl command.
20+
21+
- Improve the MultiPartParser class.
22+
23+
- Add GNU -Werror & fix warnings.
24+
25+
- Enhancements on files part.
26+
27+
- Add version/soversion to shared library.
28+
29+
- Disallow coroutines to be resolved as plain subroutine handlers.
30+
31+
- Send the content-length header even if the body(POST,PUT,OPTIONS,PATCH) is empty.
32+
33+
- Use make_exception_ptr instead of throw/catch when possible.
34+
35+
- Remove duplicated inclusion.
36+
37+
- Print error before terminating in AsyncTask.
38+
39+
- Allow users to override drogon Find modules.
40+
41+
- Use two-phase construction for the DbClientImpl and the RedisClientImpl.
42+
43+
- Add support 'select <db>' for redis.
44+
45+
### Fixed
46+
47+
- Fix a bug of the Transaction class.
48+
49+
- Copy CoroMapper.h to installation location.
50+
51+
- Remove the related request from the buffer if it's not sent after the timeout.
52+
53+
- Fix ORM with SQLite3 not compiling on Arch Linux.
54+
55+
- Fix an error when constructing RedisClientImpl objects.
56+
57+
- Fix coroutine frame leak upon assigning to awaitable.
58+
59+
- Set running flag to true before installing plugins.
60+
61+
- Fix double free in coroutine exception handling.
62+
763
## [1.5.1] - 2021-04-10
864

965
### Fixed
@@ -718,7 +774,9 @@ All notable changes to this project will be documented in this file.
718774

719775
## [1.0.0-beta1] - 2019-06-11
720776

721-
[Unreleased]: https://github.com/an-tao/drogon/compare/v1.5.1...HEAD
777+
[Unreleased]: https://github.com/an-tao/drogon/compare/v1.6.0...HEAD
778+
779+
[1.6.0]: https://github.com/an-tao/drogon/compare/v1.5.1...v1.6.0
722780

723781
[1.5.1]: https://github.com/an-tao/drogon/compare/v1.5.0...v1.5.1
724782

0 commit comments

Comments
 (0)