Bump version to 1.9.3
This commit is contained in:
parent
aa04d33e02
commit
da7f065a6f
|
@ -24,7 +24,7 @@ CMAKE_DEPENDENT_OPTION(USE_SPDLOG "Allow using the spdlog logging library" OFF "
|
||||||
|
|
||||||
set(DROGON_MAJOR_VERSION 1)
|
set(DROGON_MAJOR_VERSION 1)
|
||||||
set(DROGON_MINOR_VERSION 9)
|
set(DROGON_MINOR_VERSION 9)
|
||||||
set(DROGON_PATCH_VERSION 2)
|
set(DROGON_PATCH_VERSION 3)
|
||||||
set(DROGON_VERSION
|
set(DROGON_VERSION
|
||||||
${DROGON_MAJOR_VERSION}.${DROGON_MINOR_VERSION}.${DROGON_PATCH_VERSION})
|
${DROGON_MAJOR_VERSION}.${DROGON_MINOR_VERSION}.${DROGON_PATCH_VERSION})
|
||||||
set(DROGON_VERSION_STRING "${DROGON_VERSION}")
|
set(DROGON_VERSION_STRING "${DROGON_VERSION}")
|
||||||
|
|
50
ChangeLog.md
50
ChangeLog.md
|
@ -4,6 +4,52 @@ All notable changes to this project will be documented in this file.
|
||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
|
## [1.9.3] - 2024-02-09
|
||||||
|
|
||||||
|
### API changes list
|
||||||
|
|
||||||
|
- Added getParameter() and getOptionalParameter().
|
||||||
|
|
||||||
|
- Change drogon::MultiPartParser's parameters data type.
|
||||||
|
|
||||||
|
- Use std::string_view for WebSockets.
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
- Add support for gentoo linux, dev-db/mariadb contains mysql.
|
||||||
|
|
||||||
|
- Introduce cpplint to the CI.
|
||||||
|
|
||||||
|
- Enable readability/alt_tokens for cpplint.
|
||||||
|
|
||||||
|
- Use clang-format-17.
|
||||||
|
|
||||||
|
- Add newline at EOF.
|
||||||
|
|
||||||
|
- Enable readability/inheritance for cpplint.
|
||||||
|
|
||||||
|
- Enable build/explicit_make_pair for cpplint.
|
||||||
|
|
||||||
|
- Enable build/include_order for cpplint.
|
||||||
|
|
||||||
|
- Enable build/header_guard for cpplint.
|
||||||
|
|
||||||
|
- Enable build/storage_class for cpplint.
|
||||||
|
|
||||||
|
- Enable readability/multiline_string for cpplint.
|
||||||
|
|
||||||
|
- Alias the safe hashmap template.
|
||||||
|
|
||||||
|
- Simplify traits in utils.
|
||||||
|
|
||||||
|
- Enhancement: extend drogon::ContentType for file handling.
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
|
||||||
|
- Fix a wrong place of return.
|
||||||
|
|
||||||
|
- Fix drogon::util::fromString().
|
||||||
|
|
||||||
## [1.9.2] - 2024-01-18
|
## [1.9.2] - 2024-01-18
|
||||||
|
|
||||||
### API changes list
|
### API changes list
|
||||||
|
@ -1575,7 +1621,9 @@ All notable changes to this project will be documented in this file.
|
||||||
|
|
||||||
## [1.0.0-beta1] - 2019-06-11
|
## [1.0.0-beta1] - 2019-06-11
|
||||||
|
|
||||||
[Unreleased]: https://github.com/an-tao/drogon/compare/v1.9.2...HEAD
|
[Unreleased]: https://github.com/an-tao/drogon/compare/v1.9.3...HEAD
|
||||||
|
|
||||||
|
[1.9.3]: https://github.com/an-tao/drogon/compare/v1.9.2...v1.9.3
|
||||||
|
|
||||||
[1.9.2]: https://github.com/an-tao/drogon/compare/v1.9.1...v1.9.2
|
[1.9.2]: https://github.com/an-tao/drogon/compare/v1.9.1...v1.9.2
|
||||||
|
|
||||||
|
|
2
trantor
2
trantor
|
@ -1 +1 @@
|
||||||
Subproject commit b21daa768b22d527a551e6fc5558b8f9845f8edd
|
Subproject commit b4e9c8b86300419a1792b73cf60747c9c350686d
|
Loading…
Reference in New Issue