Bump version to 1.9.2
This commit is contained in:
parent
af29e25b03
commit
93c568bb95
|
@ -24,7 +24,7 @@ CMAKE_DEPENDENT_OPTION(USE_SPDLOG "Allow using the spdlog logging library" OFF "
|
|||
|
||||
set(DROGON_MAJOR_VERSION 1)
|
||||
set(DROGON_MINOR_VERSION 9)
|
||||
set(DROGON_PATCH_VERSION 1)
|
||||
set(DROGON_PATCH_VERSION 2)
|
||||
set(DROGON_VERSION
|
||||
${DROGON_MAJOR_VERSION}.${DROGON_MINOR_VERSION}.${DROGON_PATCH_VERSION})
|
||||
set(DROGON_VERSION_STRING "${DROGON_VERSION}")
|
||||
|
|
54
ChangeLog.md
54
ChangeLog.md
|
@ -4,6 +4,56 @@ All notable changes to this project will be documented in this file.
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## [1.9.2] - 2024-01-18
|
||||
|
||||
### API changes list
|
||||
|
||||
- Feature: Integrate spdlog as logging backend.
|
||||
|
||||
- Support asynchronous sending of chunked responses.
|
||||
|
||||
### Changed
|
||||
|
||||
- Modify the configuration file templates in drogon_ctl.
|
||||
|
||||
- Use execute_process instead of exec_program in FindJsoncpp.cmake.
|
||||
|
||||
- GitHub Action to find typos in the codebase using codespell.
|
||||
|
||||
- add discord link to readme.
|
||||
|
||||
- Add -k option to the drogon_ctl when running the press command.
|
||||
|
||||
- Refine request routing process.
|
||||
|
||||
- Add CI tests with more compilers.
|
||||
|
||||
- Avoid a race condition in database listener tests.
|
||||
|
||||
- Remove macos-11 CI; not supported by Homebrew.
|
||||
|
||||
- Bump github/codeql-action from 2 to 3.
|
||||
|
||||
- Move the RealIpResolver plugin to the PreRouting join point.
|
||||
|
||||
### Fixed
|
||||
|
||||
- Fix: typo on Mapper method.
|
||||
|
||||
- Fix a error of coroutines on Windows.
|
||||
|
||||
- Fix ORM: The original way did not handle exceptions correctly.
|
||||
|
||||
- Remove the default ctor of the Row class in ORM.
|
||||
|
||||
- Set the url of trantor to the official repository.
|
||||
|
||||
- Fix htonll/ntohll redefinition.
|
||||
|
||||
- Fix building with MSYS2.
|
||||
|
||||
- Fix name issue when cross-compiling.
|
||||
|
||||
## [1.9.1] - 2023-11-27
|
||||
|
||||
### API changes list
|
||||
|
@ -1525,7 +1575,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.9.1...HEAD
|
||||
[Unreleased]: https://github.com/an-tao/drogon/compare/v1.9.2...HEAD
|
||||
|
||||
[1.9.2]: https://github.com/an-tao/drogon/compare/v1.9.1...v1.9.2
|
||||
|
||||
[1.9.1]: https://github.com/an-tao/drogon/compare/v1.9.0...v1.9.1
|
||||
|
||||
|
|
2
trantor
2
trantor
|
@ -1 +1 @@
|
|||
Subproject commit 7fe01f638dd9e387f4005806803f0788046cd3bc
|
||||
Subproject commit b21daa768b22d527a551e6fc5558b8f9845f8edd
|
Loading…
Reference in New Issue