Bump version to 1.0.0-beta18
This commit is contained in:
parent
14b5ec08ee
commit
fda6a443a8
|
@ -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}.beta17")
|
||||
set(DROGON_VERSION_STRING "${DROGON_VERSION}.beta18")
|
||||
|
||||
# Offer the user the choice of overriding the installation directories
|
||||
set(INSTALL_LIB_DIR lib CACHE PATH "Installation directory for libraries")
|
||||
|
|
46
ChangeLog.md
46
ChangeLog.md
|
@ -4,6 +4,48 @@ All notable changes to this project will be documented in this file.
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## [1.0.0-beta18] - 2020-06-14
|
||||
|
||||
### API change list
|
||||
|
||||
- Add a new joinpoint of AOP for modification on each HTTP response.
|
||||
|
||||
- Add a method for the TERM signal handling.
|
||||
|
||||
- Add getContextRef method to the WebSocketConnection class.
|
||||
|
||||
### Changed
|
||||
|
||||
- Create a class template for publish subscribe pattern.
|
||||
|
||||
- Add contribution recommendations.
|
||||
|
||||
- Send a close message when closing a web socket connection.
|
||||
|
||||
- Add additional formats for getHttpDate function.
|
||||
|
||||
- Make app().run() method callable on a non-main thread.
|
||||
|
||||
- Add digest filter in examples.
|
||||
|
||||
- Use string_view to parse multipart/form-data requests.
|
||||
|
||||
### Fixed
|
||||
|
||||
- Fix building of ORM on FreeBSD.
|
||||
|
||||
- Fix a Mysql connection error on Windows.
|
||||
|
||||
- Fix a bug in ListenerManager::getIOLoop().
|
||||
|
||||
- Fix the count() method of Mysql ORM.
|
||||
|
||||
- Fix a compilation issue on windows.
|
||||
|
||||
- Fix model generation for PostgreSQL primary keys.
|
||||
|
||||
- Fix a bug with quoted column names in sqlite3 databases.
|
||||
|
||||
## [1.0.0-beta17] - 2020-05-22
|
||||
|
||||
### API change list
|
||||
|
@ -384,7 +426,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-beta17...HEAD
|
||||
[Unreleased]: https://github.com/an-tao/drogon/compare/v1.0.0-beta18...HEAD
|
||||
|
||||
[1.0.0-beta18]: https://github.com/an-tao/drogon/compare/v1.0.0-beta17...v1.0.0-beta18
|
||||
|
||||
[1.0.0-beta17]: https://github.com/an-tao/drogon/compare/v1.0.0-beta16...v1.0.0-beta17
|
||||
|
||||
|
|
Loading…
Reference in New Issue