Bump version to 1.7.3
This commit is contained in:
parent
a7f05c4214
commit
5a03c9aa9f
|
@ -29,7 +29,7 @@ CMAKE_DEPENDENT_OPTION(BUILD_REDIS "Build with redis support" ON "BUILD_ORM" OFF
|
|||
|
||||
set(DROGON_MAJOR_VERSION 1)
|
||||
set(DROGON_MINOR_VERSION 7)
|
||||
set(DROGON_PATCH_VERSION 2)
|
||||
set(DROGON_PATCH_VERSION 3)
|
||||
set(DROGON_VERSION
|
||||
${DROGON_MAJOR_VERSION}.${DROGON_MINOR_VERSION}.${DROGON_PATCH_VERSION})
|
||||
set(DROGON_VERSION_STRING "${DROGON_VERSION}")
|
||||
|
|
42
ChangeLog.md
42
ChangeLog.md
|
@ -4,6 +4,44 @@ All notable changes to this project will be documented in this file.
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## [1.7.3] - 2021-10-17
|
||||
|
||||
### API Change List
|
||||
|
||||
- Support sending files by range
|
||||
|
||||
- Allow outside access to the file path of an HTTP response
|
||||
|
||||
- Support custom MIME types and extensions
|
||||
|
||||
- Add the getOptionalParameter method
|
||||
|
||||
- Add async_run
|
||||
|
||||
### Changes
|
||||
|
||||
- Experimental HaikuOS Support
|
||||
|
||||
- Improve AccessLogger
|
||||
|
||||
- Add Alpine Dockerfile
|
||||
|
||||
- Add option to disable brotli if desired by the builder
|
||||
|
||||
### Fixed
|
||||
|
||||
- Fix a bug in the getIOLoop method
|
||||
|
||||
- Return on redis connection errors
|
||||
|
||||
- Fix(MutliPart): Does not respect quotes in Content-Disposition header
|
||||
|
||||
- Fix(cmake): error in FindFilesystem
|
||||
|
||||
- Fix(style): Change the NotFound page text color
|
||||
|
||||
- Fix a race condition in testing
|
||||
|
||||
## [1.7.2] - 2021-08-24
|
||||
|
||||
### API Change List
|
||||
|
@ -888,7 +926,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.7.2...HEAD
|
||||
[Unreleased]: https://github.com/an-tao/drogon/compare/v1.7.3...HEAD
|
||||
|
||||
[1.7.3]: https://github.com/an-tao/drogon/compare/v1.7.2...v1.7.3
|
||||
|
||||
[1.7.2]: https://github.com/an-tao/drogon/compare/v1.7.1...v1.7.2
|
||||
|
||||
|
|
2
trantor
2
trantor
|
@ -1 +1 @@
|
|||
Subproject commit 9f515fe76cfdbef8beff193a5d2c876dd0bdf2fa
|
||||
Subproject commit 5457061be229db8098b42afb068078603194a4f9
|
Loading…
Reference in New Issue