Skip to content

Commit a22956b

Browse files
committed
Bump version to 1.9.11
1 parent 3c5749b commit a22956b

File tree

3 files changed

+36
-6
lines changed

3 files changed

+36
-6
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ CMAKE_DEPENDENT_OPTION(USE_SPDLOG "Allow using the spdlog logging library" OFF "
2525

2626
set(DROGON_MAJOR_VERSION 1)
2727
set(DROGON_MINOR_VERSION 9)
28-
set(DROGON_PATCH_VERSION 10)
28+
set(DROGON_PATCH_VERSION 11)
2929
set(DROGON_VERSION
3030
${DROGON_MAJOR_VERSION}.${DROGON_MINOR_VERSION}.${DROGON_PATCH_VERSION})
3131
set(DROGON_VERSION_STRING "${DROGON_VERSION}")

ChangeLog.md

Lines changed: 34 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,42 @@ All notable changes to this project will be documented in this file.
44

55
## [Unreleased]
66

7+
## [1.9.11] - 2025-06-20
8+
9+
### API changes list
10+
11+
- Add a new overload for execSqlCoro.
12+
13+
### Changed
14+
15+
- Do not write to source directory during build.
16+
17+
- Improve Postgres connection stability.
18+
19+
- Add handleFatalError in handleClosed.
20+
21+
- Add -o|--output option to drogon_ctl create models.
22+
23+
- Add qrcode for WeChat official account to the README file.
24+
25+
- Support for iOS compiling.
26+
27+
- Add cors example to demonstrate cross-origin support in drogon.
28+
29+
- Add support for continuation frame in WebSocketMessageParser.
30+
31+
- Add RawParameter API to pass raw SQL parameters.
32+
33+
- Upgrade Windows image and re-enable tests on Windows.
734

835
### Fixed
936

10-
- dg_ctl fix segfault when create models is called with --output
37+
- Fix a bug in isAutoCreationClass<T>.
1138

12-
### Added
39+
- Fix CI on MacOS.
40+
41+
- Fix issue with precision loss of double-type parameters in ORM inputs.
1342

14-
- dg_ctl create models new command line option -o | --output
1543

1644
## [1.9.10] - 2025-02-20
1745

@@ -1814,7 +1842,9 @@ All notable changes to this project will be documented in this file.
18141842

18151843
## [1.0.0-beta1] - 2019-06-11
18161844

1817-
[Unreleased]: https://github.com/an-tao/drogon/compare/v1.9.10...HEAD
1845+
[Unreleased]: https://github.com/an-tao/drogon/compare/v1.9.11...HEAD
1846+
1847+
[1.9.11]: https://github.com/an-tao/drogon/compare/v1.9.10...v1.9.11
18181848

18191849
[1.9.10]: https://github.com/an-tao/drogon/compare/v1.9.9...v1.9.10
18201850

trantor

0 commit comments

Comments
 (0)