Bump version to 1.2.0
This commit is contained in:
parent
292894c426
commit
35b4a86e06
|
@ -1,41 +1,41 @@
|
|||
version: 1.1.0.{build}
|
||||
configuration:
|
||||
- Release
|
||||
- Debug
|
||||
|
||||
environment:
|
||||
matrix:
|
||||
- GENERATOR: Visual Studio 15 2017
|
||||
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
|
||||
ARCH: Win32
|
||||
|
||||
- GENERATOR: Visual Studio 15 2017
|
||||
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
|
||||
ARCH: x64
|
||||
|
||||
init:
|
||||
- cmake --version
|
||||
install:
|
||||
- cd C:\Tools\vcpkg
|
||||
- git pull
|
||||
- .\bootstrap-vcpkg.bat
|
||||
- vcpkg install jsoncpp:x86-windows
|
||||
- vcpkg install jsoncpp:x64-windows
|
||||
- vcpkg install zlib:x86-windows
|
||||
- vcpkg install zlib:x64-windows
|
||||
- vcpkg install libpq:x86-windows
|
||||
- vcpkg install libpq:x64-windows
|
||||
- vcpkg integrate install
|
||||
- cd %APPVEYOR_BUILD_FOLDER%
|
||||
before_build:
|
||||
- git submodule update --init
|
||||
- md build
|
||||
- cd build
|
||||
- cmake --config "%CONFIGURATION%" -G "%GENERATOR%" -DCMAKE_TOOLCHAIN_FILE=c:/tools/vcpkg/scripts/buildsystems/vcpkg.cmake ..
|
||||
build_script:
|
||||
- cmake --build . --config "%CONFIGURATION%"
|
||||
build:
|
||||
project: build\ALL_BUILD.vcxproj
|
||||
verbosity: minimal
|
||||
cache:
|
||||
version: 1.2.0.{build}
|
||||
configuration:
|
||||
- Release
|
||||
- Debug
|
||||
|
||||
environment:
|
||||
matrix:
|
||||
- GENERATOR: Visual Studio 15 2017
|
||||
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
|
||||
ARCH: Win32
|
||||
|
||||
- GENERATOR: Visual Studio 15 2017
|
||||
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
|
||||
ARCH: x64
|
||||
|
||||
init:
|
||||
- cmake --version
|
||||
install:
|
||||
- cd C:\Tools\vcpkg
|
||||
- git pull
|
||||
- .\bootstrap-vcpkg.bat
|
||||
- vcpkg install jsoncpp:x86-windows
|
||||
- vcpkg install jsoncpp:x64-windows
|
||||
- vcpkg install zlib:x86-windows
|
||||
- vcpkg install zlib:x64-windows
|
||||
- vcpkg install libpq:x86-windows
|
||||
- vcpkg install libpq:x64-windows
|
||||
- vcpkg integrate install
|
||||
- cd %APPVEYOR_BUILD_FOLDER%
|
||||
before_build:
|
||||
- git submodule update --init
|
||||
- md build
|
||||
- cd build
|
||||
- cmake --config "%CONFIGURATION%" -G "%GENERATOR%" -DCMAKE_TOOLCHAIN_FILE=c:/tools/vcpkg/scripts/buildsystems/vcpkg.cmake ..
|
||||
build_script:
|
||||
- cmake --build . --config "%CONFIGURATION%"
|
||||
build:
|
||||
project: build\ALL_BUILD.vcxproj
|
||||
verbosity: minimal
|
||||
cache:
|
||||
- c:\tools\vcpkg\installed\
|
|
@ -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 1)
|
||||
set(DROGON_MINOR_VERSION 2)
|
||||
set(DROGON_PATCH_VERSION 0)
|
||||
set(DROGON_VERSION
|
||||
${DROGON_MAJOR_VERSION}.${DROGON_MINOR_VERSION}.${DROGON_PATCH_VERSION})
|
||||
|
|
30
ChangeLog.md
30
ChangeLog.md
|
@ -4,6 +4,32 @@ All notable changes to this project will be documented in this file.
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## [1.2.0] - 2020-12-12
|
||||
|
||||
### Fixed
|
||||
|
||||
- Fix error when receiving response without content-length header.
|
||||
|
||||
- Fix a stack-overflow error when high concurrency happening on sqlite3.
|
||||
|
||||
- Fix MinGW ORM building by enabling htonll and ntohll.
|
||||
|
||||
### Changed
|
||||
|
||||
- Modify the WebSocketTest controller to create a simple chat room.
|
||||
|
||||
- Add support for OpenBSD.
|
||||
|
||||
- Return 400 if the content-length is invalid.
|
||||
|
||||
- Don't send content type in a 304 response.
|
||||
|
||||
- Add the reuse_port option to app() interface.
|
||||
|
||||
- Add the 'std::optional' support in the SqlBinder class and the Session class.
|
||||
|
||||
- Add implicit page resolving capability.
|
||||
|
||||
## [1.1.0] - 2020-10-31
|
||||
|
||||
### Fixed
|
||||
|
@ -566,7 +592,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.1.0...HEAD
|
||||
[Unreleased]: https://github.com/an-tao/drogon/compare/v1.2.0...HEAD
|
||||
|
||||
[1.2.0]: https://github.com/an-tao/drogon/compare/v1.1.0...v1.2.0
|
||||
|
||||
[1.1.0]: https://github.com/an-tao/drogon/compare/v1.0.0...v1.1.0
|
||||
|
||||
|
|
|
@ -1253,7 +1253,7 @@ void loadFileLengths()
|
|||
indexLen = std::filesystem::file_size("index.html");
|
||||
indexImplicitLen = std::filesystem::file_size("a-directory/page.html");
|
||||
}
|
||||
catch (std::exception e)
|
||||
catch (const std::exception &e)
|
||||
{
|
||||
LOG_ERROR << "Unable to retrieve HTML file sizes: " << e.what();
|
||||
exit(1);
|
||||
|
|
2
trantor
2
trantor
|
@ -1 +1 @@
|
|||
Subproject commit b2902d217b9f0a59c428bff1ca6ccfe024a86aa6
|
||||
Subproject commit 8e0af4aaa1bc2fb6eb1e1e2f310fa1d070c5e1d2
|
Loading…
Reference in New Issue