Bump version to 1.1.0
This commit is contained in:
parent
594911b7a2
commit
fb17efe765
|
@ -1,4 +1,4 @@
|
|||
version: 1.0.0.{build}
|
||||
version: 1.1.0.{build}
|
||||
configuration:
|
||||
- Release
|
||||
- Debug
|
||||
|
|
|
@ -10,7 +10,7 @@ option(LIBPQ_BATCH_MODE "Use batch mode for libpq" ON)
|
|||
option(BUILD_DROGON_SHARED "Build drogon as a shared lib" OFF)
|
||||
|
||||
set(DROGON_MAJOR_VERSION 1)
|
||||
set(DROGON_MINOR_VERSION 0)
|
||||
set(DROGON_MINOR_VERSION 1)
|
||||
set(DROGON_PATCH_VERSION 0)
|
||||
set(DROGON_VERSION
|
||||
${DROGON_MAJOR_VERSION}.${DROGON_MINOR_VERSION}.${DROGON_PATCH_VERSION})
|
||||
|
|
34
ChangeLog.md
34
ChangeLog.md
|
@ -4,6 +4,36 @@ All notable changes to this project will be documented in this file.
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## [1.1.0] - 2020-10-31
|
||||
|
||||
### Fixed
|
||||
|
||||
- Fix failing to connect to DB if parameters contains spaces.
|
||||
|
||||
- Fix a CMAKE bug when SHARED and EXAMPLES are on.
|
||||
|
||||
- Fix the HttpServer::isWebSocket method.
|
||||
|
||||
- Find mariadb client library correctly on Ubuntu 20.04.
|
||||
|
||||
- Fix a bug when creating sqlite3 database models.
|
||||
|
||||
- Fix a bug in the Mapper::insertFuture method.
|
||||
|
||||
### Changed
|
||||
|
||||
- Disable TLS1.0/1.1 on HTTPS by default.
|
||||
|
||||
- Use explicit lambda capture lists.
|
||||
|
||||
- Modify the procedure of the app().run() method.
|
||||
|
||||
- Support namespaces when creating view source files.
|
||||
|
||||
- Add --path-to-namespace option to drogon_ctl for creating views.
|
||||
|
||||
- Add the Host and Sec-WebSocket-Version headers when connecting to a websocket server.
|
||||
|
||||
## [1.0.0] - 2020-09-27
|
||||
|
||||
### Fixed
|
||||
|
@ -536,7 +566,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...HEAD
|
||||
[Unreleased]: https://github.com/an-tao/drogon/compare/v1.1.0...HEAD
|
||||
|
||||
[1.1.0]: https://github.com/an-tao/drogon/compare/v1.0.0...v1.1.0
|
||||
|
||||
[1.0.0]: https://github.com/an-tao/drogon/compare/v1.0.0-beta21...v1.0.0
|
||||
|
||||
|
|
2
trantor
2
trantor
|
@ -1 +1 @@
|
|||
Subproject commit 88c5b846f300858e592217029615c72e89f71265
|
||||
Subproject commit 28371795d6479a77771a2b25fc310795872bae46
|
Loading…
Reference in New Issue