File tree Expand file tree Collapse file tree 6 files changed +13
-13
lines changed Expand file tree Collapse file tree 6 files changed +13
-13
lines changed Original file line number Diff line number Diff line change 1
1
mbed TLS ChangeLog (Sorted per branch, date)
2
2
3
- = mbed TLS 2.x.x branch released xxxx-xx-xx
3
+ = mbed TLS 2.17.0 branch released 2019-03-19
4
4
5
5
Features
6
6
* Add a new X.509 API call `mbedtls_x509_parse_der_nocopy()`
Original file line number Diff line number Diff line change 24
24
*/
25
25
26
26
/**
27
- * @mainpage mbed TLS v0.0 .0 source code documentation
27
+ * @mainpage mbed TLS v2.17 .0 source code documentation
28
28
*
29
29
* This documentation describes the internal structure of mbed TLS. It was
30
30
* automatically generated from specially formatted comment blocks in
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ DOXYFILE_ENCODING = UTF-8
28
28
# identify the project. Note that if you do not use Doxywizard you need
29
29
# to put quotes around the project name if it contains spaces.
30
30
31
- PROJECT_NAME = "mbed TLS v0.0 .0"
31
+ PROJECT_NAME = "mbed TLS v2.17 .0"
32
32
33
33
# The PROJECT_NUMBER tag can be used to enter a project or revision number.
34
34
# This could be handy for archiving the generated documentation or
Original file line number Diff line number Diff line change 38
38
* The version number x.y.z is split into three parts.
39
39
* Major, Minor, Patchlevel
40
40
*/
41
- #define MBEDTLS_VERSION_MAJOR 0
42
- #define MBEDTLS_VERSION_MINOR 0
41
+ #define MBEDTLS_VERSION_MAJOR 2
42
+ #define MBEDTLS_VERSION_MINOR 17
43
43
#define MBEDTLS_VERSION_PATCH 0
44
44
45
45
/**
46
46
* The single version number has the following structure:
47
47
* MMNNPP00
48
48
* Major version | Minor version | Patch version
49
49
*/
50
- #define MBEDTLS_VERSION_NUMBER 0x00000000
51
- #define MBEDTLS_VERSION_STRING "0.0 .0"
52
- #define MBEDTLS_VERSION_STRING_FULL "mbed TLS 0.0 .0"
50
+ #define MBEDTLS_VERSION_NUMBER 0x02110000
51
+ #define MBEDTLS_VERSION_STRING "2.17 .0"
52
+ #define MBEDTLS_VERSION_STRING_FULL "mbed TLS 2.17 .0"
53
53
54
54
#if defined(MBEDTLS_VERSION_C )
55
55
Original file line number Diff line number Diff line change @@ -182,20 +182,20 @@ endif(USE_STATIC_MBEDTLS_LIBRARY)
182
182
if (USE_SHARED_MBEDTLS_LIBRARY )
183
183
if (NOT USE_CRYPTO_SUBMODULE )
184
184
add_library (mbedcrypto SHARED ${src_crypto} )
185
- set_target_properties (mbedcrypto PROPERTIES VERSION 0.0 .0 SOVERSION 3 )
185
+ set_target_properties (mbedcrypto PROPERTIES VERSION 2.17 .0 SOVERSION 3 )
186
186
target_link_libraries (mbedcrypto ${libs} )
187
187
target_include_directories (mbedcrypto PUBLIC ${CMAKE_SOURCE_DIR} /include/ )
188
188
endif ()
189
189
190
190
add_library (mbedx509 SHARED ${src_x509} )
191
- set_target_properties (mbedx509 PROPERTIES VERSION 0.0 .0 SOVERSION 0 )
191
+ set_target_properties (mbedx509 PROPERTIES VERSION 2.17 .0 SOVERSION 0 )
192
192
target_link_libraries (mbedx509 ${libs} mbedcrypto )
193
193
target_include_directories (mbedx509
194
194
PUBLIC ${CMAKE_SOURCE_DIR} /include/
195
195
PUBLIC ${CMAKE_SOURCE_DIR} /crypto/include/ )
196
196
197
197
add_library (mbedtls SHARED ${src_tls} )
198
- set_target_properties (mbedtls PROPERTIES VERSION 0.0 .0 SOVERSION 12 )
198
+ set_target_properties (mbedtls PROPERTIES VERSION 2.17 .0 SOVERSION 12 )
199
199
target_link_libraries (mbedtls ${libs} mbedx509 )
200
200
target_include_directories (mbedtls
201
201
PUBLIC ${CMAKE_SOURCE_DIR} /include/
Original file line number Diff line number Diff line change 1
1
Check compiletime library version
2
- check_compiletime_version:"0.0 .0"
2
+ check_compiletime_version:"2.17 .0"
3
3
4
4
Check runtime library version
5
- check_runtime_version:"0.0 .0"
5
+ check_runtime_version:"2.17 .0"
6
6
7
7
Check for MBEDTLS_VERSION_C
8
8
check_feature:"MBEDTLS_VERSION_C":0
You can’t perform that action at this time.
0 commit comments