Bump version to 1.4.0

This commit is contained in:
an-tao 2021-03-05 23:06:16 +08:00
parent 98da3490e7
commit cd389aec13
4 changed files with 40 additions and 4 deletions

View File

@ -22,7 +22,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 3)
set(DROGON_MINOR_VERSION 4)
set(DROGON_PATCH_VERSION 0)
set(DROGON_VERSION
${DROGON_MAJOR_VERSION}.${DROGON_MINOR_VERSION}.${DROGON_PATCH_VERSION})

View File

@ -4,6 +4,40 @@ All notable changes to this project will be documented in this file.
## [Unreleased]
## [1.4.0] - 2021-03-05
### API change list
- Add coroutine support.
- Add default value interface to SqlBinder for MySQL and PostgreSQL.
- Support SNI in the HttpClient class.
- Validate certificate in HttpClient.
- HttpRequest: add a feature to avoid URL encoding of the path.
### Changed
- Handle cross-compiling properly.
- Lowercase all HTTP headers, add webp and avif types.
- Modify FindMySQL.cmake
### Fixed
- Fix an error in the HttpClient class when a response has no content-length.
- Return 404 or 405 responses correctly.
- Fix compilation errors on vs2019.
- Fix stack use after scope error in client_example.
- Fix the error when the SSL handshake fails.
## [1.3.0] - 2021-01-16
### API change list
@ -620,7 +654,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.3.0...HEAD
[Unreleased]: https://github.com/an-tao/drogon/compare/v1.4.0...HEAD
[1.4.0]: https://github.com/an-tao/drogon/compare/v1.3.0...v1.4.0
[1.3.0]: https://github.com/an-tao/drogon/compare/v1.2.0...v1.3.0

View File

@ -1,6 +1,6 @@
MIT License
Copyright (c) 2019-2020 An Tao
Copyright (c) 2019-2021 An Tao
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal

@ -1 +1 @@
Subproject commit acb71c0beab36d5d82e09ce80b8e1593ad79c178
Subproject commit 634984e7302f28a30c3276fe4e6ba8a40dd8ee59