Skip to content

Commit 88c5b84

Browse files
committed
Bump version to 1.1.0
1 parent 1e5d24e commit 88c5b84

File tree

2 files changed

+19
-2
lines changed

2 files changed

+19
-2
lines changed

CMakeLists.txt

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,10 @@ target_sources(${PROJECT_NAME} PRIVATE ${TRANTOR_SOURCES})
9191

9292
if(WIN32)
9393
target_link_libraries(${PROJECT_NAME} PRIVATE ws2_32 Rpcrt4)
94-
else()
94+
if(OpenSSL_FOUND)
95+
target_link_libraries(${PROJECT_NAME} PRIVATE Crypt32 Secur32)
96+
endif(OpenSSL_FOUND)
97+
else(WIN32)
9598
target_link_libraries(${PROJECT_NAME} PRIVATE pthread)
9699
endif(WIN32)
97100

ChangeLog.md

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,18 @@ All notable changes to this project will be documented in this file.
33

44
## [Unreleased]
55

6+
### [1.1.0] - 2020-10-24
7+
8+
### Changed
9+
10+
- Disable TLS 1.0 and 1.1 by default.
11+
12+
- Use explicit lambda capture lists.
13+
14+
### Fixed
15+
16+
- Fix a bug in the Date::fromDbStringLocal() method.
17+
618
### [1.0.0] - 2020-9-27
719

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

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

197-
[Unreleased]: https://github.com/an-tao/trantor/compare/v1.0.0...HEAD
209+
[Unreleased]: https://github.com/an-tao/trantor/compare/v1.1.0...HEAD
210+
211+
[1.1.0]: https://github.com/an-tao/trantor/compare/v1.0.0...v1.1.0
198212

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

0 commit comments

Comments
 (0)