File tree Expand file tree Collapse file tree 2 files changed +19
-2
lines changed Expand file tree Collapse file tree 2 files changed +19
-2
lines changed Original file line number Diff line number Diff line change @@ -91,7 +91,10 @@ target_sources(${PROJECT_NAME} PRIVATE ${TRANTOR_SOURCES})
91
91
92
92
if (WIN32 )
93
93
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 )
95
98
target_link_libraries (${PROJECT_NAME} PRIVATE pthread )
96
99
endif (WIN32 )
97
100
Original file line number Diff line number Diff line change @@ -3,6 +3,18 @@ All notable changes to this project will be documented in this file.
3
3
4
4
## [ Unreleased]
5
5
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
+
6
18
### [ 1.0.0] - 2020-9-27
7
19
8
20
### API changes list
@@ -194,7 +206,9 @@ All notable changes to this project will be documented in this file.
194
206
195
207
## [ 1.0.0-rc1] - 2019-06-11
196
208
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
198
212
199
213
[ 1.0.0 ] : https://github.com/an-tao/trantor/compare/v1.0.0-rc16...v1.0.0
200
214
You can’t perform that action at this time.
0 commit comments