File tree 6 files changed +12
-12
lines changed
6 files changed +12
-12
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.1.x branch released 2016-xx-xx
3
+ = mbed TLS 2.1.6 branch released 2016-10-17
4
4
5
5
Security
6
6
* Removed the MBEDTLS_SSL_AEAD_RANDOM_IV option, because it was not compliant
Original file line number Diff line number Diff line change 21
21
*/
22
22
23
23
/**
24
- * @mainpage mbed TLS v2.1.5 source code documentation
24
+ * @mainpage mbed TLS v2.1.6 source code documentation
25
25
*
26
26
* This documentation describes the internal structure of mbed TLS. It was
27
27
* 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 v2.1.5 "
31
+ PROJECT_NAME = "mbed TLS v2.1.6 "
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 39
39
*/
40
40
#define MBEDTLS_VERSION_MAJOR 2
41
41
#define MBEDTLS_VERSION_MINOR 1
42
- #define MBEDTLS_VERSION_PATCH 5
42
+ #define MBEDTLS_VERSION_PATCH 6
43
43
44
44
/**
45
45
* The single version number has the following structure:
46
46
* MMNNPP00
47
47
* Major version | Minor version | Patch version
48
48
*/
49
- #define MBEDTLS_VERSION_NUMBER 0x02010500
50
- #define MBEDTLS_VERSION_STRING "2.1.5 "
51
- #define MBEDTLS_VERSION_STRING_FULL "mbed TLS 2.1.5 "
49
+ #define MBEDTLS_VERSION_NUMBER 0x02010600
50
+ #define MBEDTLS_VERSION_STRING "2.1.6 "
51
+ #define MBEDTLS_VERSION_STRING_FULL "mbed TLS 2.1.6 "
52
52
53
53
#if defined(MBEDTLS_VERSION_C )
54
54
Original file line number Diff line number Diff line change @@ -138,15 +138,15 @@ endif(USE_STATIC_MBEDTLS_LIBRARY)
138
138
139
139
if (USE_SHARED_MBEDTLS_LIBRARY)
140
140
add_library (mbedcrypto SHARED ${src_crypto} )
141
- set_target_properties (mbedcrypto PROPERTIES VERSION 2.1.5 SOVERSION 0)
141
+ set_target_properties (mbedcrypto PROPERTIES VERSION 2.1.6 SOVERSION 0)
142
142
target_link_libraries (mbedcrypto ${libs} )
143
143
144
144
add_library (mbedx509 SHARED ${src_x509} )
145
- set_target_properties (mbedx509 PROPERTIES VERSION 2.1.5 SOVERSION 0)
145
+ set_target_properties (mbedx509 PROPERTIES VERSION 2.1.6 SOVERSION 0)
146
146
target_link_libraries (mbedx509 ${libs} mbedcrypto)
147
147
148
148
add_library (mbedtls SHARED ${src_tls} )
149
- set_target_properties (mbedtls PROPERTIES VERSION 2.1.5 SOVERSION 10)
149
+ set_target_properties (mbedtls PROPERTIES VERSION 2.1.6 SOVERSION 10)
150
150
target_link_libraries (mbedtls ${libs} mbedx509)
151
151
152
152
install (TARGETS mbedtls mbedx509 mbedcrypto
Original file line number Diff line number Diff line change 1
1
Check compiletime library version
2
- check_compiletime_version:"2.1.5 "
2
+ check_compiletime_version:"2.1.6 "
3
3
4
4
Check runtime library version
5
- check_runtime_version:"2.1.5 "
5
+ check_runtime_version:"2.1.6 "
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