Bump version to 1.7.2

This commit is contained in:
marty1885 2021-08-24 19:43:00 +08:00
parent 133e6dc2ef
commit 3620228843
2 changed files with 53 additions and 1 deletions

View File

@ -28,7 +28,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 1)
set(DROGON_PATCH_VERSION 2)
set(DROGON_VERSION
${DROGON_MAJOR_VERSION}.${DROGON_MINOR_VERSION}.${DROGON_PATCH_VERSION})
set(DROGON_VERSION_STRING "${DROGON_VERSION}")

View File

@ -4,6 +4,58 @@ All notable changes to this project will be documented in this file.
## [Unreleased]
## [1.7.2] - 2021-08-24
### API Change List
- Add port() and host() to HttpClient
- Add stop() method to the WebSocketClient class
### Changes
- Enables higher level of warnings when building on UNIX with GCC
- Generic optimizations
- Add redis example
- Added support for paths containing unicode characters on Windows
- Load ParseAndAddDrogonTests in DrogonConfig
- Add BUILD_DOC to cmake options
- Add websocket server example
- CMake: Add CPack for .deb and .rpm package generation
- cmake: Use GNUInstallDirs to figure out install dirs.
### Fixed
- Fix WS client example not working with integration_test
- Fix WS client example error when encountering bad IP addresses
- CacheFile supports >2GB files on 64-bit Windows
- `drogon_ctl` now emits error on failing to create view from CSP
- Added the `make` program to Ubuntu docker environment
- Correctly check the case-insensitive value of the upgrade header of responses in websocket connections
- Fix incorrect MD5 hash when using internal MD5 implementation when input size == block size+1
- Fix test success message incorrectly shown for a failed test when -s is flag present
- Force using boost::filesystem when building for Android
- Escape connection string in drogon_ctl create model
- Fix some memory leak and race conditions in WebSocketClient
## [1.7.1] - 2021-06-24
### Changes