Bump version to 1.0.0-beta20
This commit is contained in:
parent
168d2afb17
commit
f0110a642d
|
@ -14,7 +14,7 @@ set(DROGON_MINOR_VERSION 0)
|
|||
set(DROGON_PATCH_VERSION 0)
|
||||
set(DROGON_VERSION
|
||||
${DROGON_MAJOR_VERSION}.${DROGON_MINOR_VERSION}.${DROGON_PATCH_VERSION})
|
||||
set(DROGON_VERSION_STRING "${DROGON_VERSION}.beta19")
|
||||
set(DROGON_VERSION_STRING "${DROGON_VERSION}.beta20")
|
||||
|
||||
# Offer the user the choice of overriding the installation directories
|
||||
set(INSTALL_LIB_DIR lib CACHE PATH "Installation directory for libraries")
|
||||
|
|
38
ChangeLog.md
38
ChangeLog.md
|
@ -4,6 +4,40 @@ All notable changes to this project will be documented in this file.
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## [1.0.0-beta20] - 2020-08-15
|
||||
|
||||
### API change list
|
||||
|
||||
- Provide users with a method to change the session ID of a session.
|
||||
|
||||
### Changed
|
||||
|
||||
- Modify parseContentType function.
|
||||
|
||||
- Modify the docker file to build release version in docker.
|
||||
|
||||
- Set session to requests for websockets.
|
||||
|
||||
- Modify parseContentType function.
|
||||
|
||||
- Change the return value type of the mktime() function in models.
|
||||
|
||||
- Fix compilation warning of sprintf function.
|
||||
|
||||
### Fixed
|
||||
|
||||
- Fix a bug when saving uploaded files on Windows.
|
||||
|
||||
- Fix a mysql issue when connections are lost.
|
||||
|
||||
- Resolve an issue when sending big files (>=2gB) on Windows.
|
||||
|
||||
- Fix boost::string_view compilation error of MysqlConnection class.
|
||||
|
||||
- Set the response Access-Control-Allow-Headers header correctly for CORS.
|
||||
|
||||
- Fix a bug in drogon_ctl when creating a model, that causes to write source files multiple times.
|
||||
|
||||
## [1.0.0-beta19] - 2020-07-16
|
||||
|
||||
### API change list
|
||||
|
@ -458,7 +492,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.0.0-beta19...HEAD
|
||||
[Unreleased]: https://github.com/an-tao/drogon/compare/v1.0.0-beta20...HEAD
|
||||
|
||||
[1.0.0-beta20]: https://github.com/an-tao/drogon/compare/v1.0.0-beta19...v1.0.0-beta20
|
||||
|
||||
[1.0.0-beta19]: https://github.com/an-tao/drogon/compare/v1.0.0-beta18...v1.0.0-beta19
|
||||
|
||||
|
|
2
trantor
2
trantor
|
@ -1 +1 @@
|
|||
Subproject commit 6ed38a0a1e9baef9bf68e7952962d8f9425fa749
|
||||
Subproject commit ee04127312655b681632442000d1473dabb6e337
|
Loading…
Reference in New Issue