[go: nahoru, domu]

Skip to content

Commit

Permalink
Bump version to 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
an-tao committed Oct 24, 2020
1 parent 1e5d24e commit 88c5b84
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 2 deletions.
5 changes: 4 additions & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,10 @@ target_sources(${PROJECT_NAME} PRIVATE ${TRANTOR_SOURCES})

if(WIN32)
target_link_libraries(${PROJECT_NAME} PRIVATE ws2_32 Rpcrt4)
else()
if(OpenSSL_FOUND)
target_link_libraries(${PROJECT_NAME} PRIVATE Crypt32 Secur32)
endif(OpenSSL_FOUND)
else(WIN32)
target_link_libraries(${PROJECT_NAME} PRIVATE pthread)
endif(WIN32)

Expand Down
16 changes: 15 additions & 1 deletion ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,18 @@ All notable changes to this project will be documented in this file.

## [Unreleased]

### [1.1.0] - 2020-10-24

### Changed

- Disable TLS 1.0 and 1.1 by default.

- Use explicit lambda capture lists.

### Fixed

- Fix a bug in the Date::fromDbStringLocal() method.

### [1.0.0] - 2020-9-27

### API changes list
Expand Down Expand Up @@ -194,7 +206,9 @@ All notable changes to this project will be documented in this file.

## [1.0.0-rc1] - 2019-06-11

[Unreleased]: https://github.com/an-tao/trantor/compare/v1.0.0...HEAD
[Unreleased]: https://github.com/an-tao/trantor/compare/v1.1.0...HEAD

[1.1.0]: https://github.com/an-tao/trantor/compare/v1.0.0...v1.1.0

[1.0.0]: https://github.com/an-tao/trantor/compare/v1.0.0-rc16...v1.0.0

Expand Down

0 comments on commit 88c5b84

Please sign in to comment.