Update drogon version to v1.0.0-beta9
This commit is contained in:
parent
876e21f492
commit
ac377bd650
|
@ -15,7 +15,7 @@ set(DROGON_MINOR_VERSION 0)
|
||||||
set(DROGON_PATCH_VERSION 0)
|
set(DROGON_PATCH_VERSION 0)
|
||||||
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(PRE_RELEASE_STRING "beta7")
|
set(PRE_RELEASE_STRING "beta9")
|
||||||
|
|
||||||
# Offer the user the choice of overriding the installation directories
|
# Offer the user the choice of overriding the installation directories
|
||||||
set(INSTALL_LIB_DIR lib CACHE PATH "Installation directory for libraries")
|
set(INSTALL_LIB_DIR lib CACHE PATH "Installation directory for libraries")
|
||||||
|
|
33
ChangeLog.md
33
ChangeLog.md
|
@ -4,6 +4,35 @@ All notable changes to this project will be documented in this file.
|
||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
|
## [1.0.0-beta9] - 2019-10-28
|
||||||
|
|
||||||
|
### API change list
|
||||||
|
|
||||||
|
- Add interfaces for accessing content of attachments.
|
||||||
|
|
||||||
|
- Add option to disable setting the 404 status code of the custom 404 page.
|
||||||
|
|
||||||
|
- Make user can use any string as a placeholder's name in routing patterns.
|
||||||
|
|
||||||
|
- Add type conversion methods to the HttpRequest and HttpResponse classes.
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
- Modify cmake configuration.
|
||||||
|
|
||||||
|
- Modify the quit() method.
|
||||||
|
|
||||||
|
- Implement relationships in ORM.
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
|
||||||
|
- Fix size_t underflow of drogon_ctl.
|
||||||
|
|
||||||
|
- Fix some race conditions.
|
||||||
|
|
||||||
|
- Fix a busy loop bug when connections to mysql server are timeout.
|
||||||
|
|
||||||
|
|
||||||
## [1.0.0-beta8] - 2019-10-03
|
## [1.0.0-beta8] - 2019-10-03
|
||||||
|
|
||||||
### API change list
|
### API change list
|
||||||
|
@ -178,7 +207,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.0.0-beta8...HEAD
|
[Unreleased]: https://github.com/an-tao/drogon/compare/v1.0.0-beta9...HEAD
|
||||||
|
|
||||||
|
[1.0.0-beta9]: https://github.com/an-tao/drogon/compare/v1.0.0-beta8...v1.0.0-beta9
|
||||||
|
|
||||||
[1.0.0-beta8]: https://github.com/an-tao/drogon/compare/v1.0.0-beta7...v1.0.0-beta8
|
[1.0.0-beta8]: https://github.com/an-tao/drogon/compare/v1.0.0-beta7...v1.0.0-beta8
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue