File tree Expand file tree Collapse file tree 6 files changed +12
-12
lines changed
Expand file tree Collapse file tree 6 files changed +12
-12
lines changed Original file line number Diff line number Diff line change 11mbed TLS ChangeLog (Sorted per branch, date)
22
3- = mbed TLS x.x.x branch released xxxx-xx-xx
3+ = mbed TLS 2.7.5 branch released 2018-07-25
44
55Security
66 * Fix a vulnerability in TLS ciphersuites based on CBC and using SHA-384,
Original file line number Diff line number Diff line change 2424 */
2525
2626/**
27- * @mainpage mbed TLS v2.7.4 source code documentation
27+ * @mainpage mbed TLS v2.7.5 source code documentation
2828 *
2929 * This documentation describes the internal structure of mbed TLS. It was
3030 * 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
2828# identify the project. Note that if you do not use Doxywizard you need
2929# to put quotes around the project name if it contains spaces.
3030
31- PROJECT_NAME = "mbed TLS v2.7.4 "
31+ PROJECT_NAME = "mbed TLS v2.7.5 "
3232
3333# The PROJECT_NUMBER tag can be used to enter a project or revision number.
3434# This could be handy for archiving the generated documentation or
Original file line number Diff line number Diff line change 4040 */
4141#define MBEDTLS_VERSION_MAJOR 2
4242#define MBEDTLS_VERSION_MINOR 7
43- #define MBEDTLS_VERSION_PATCH 4
43+ #define MBEDTLS_VERSION_PATCH 5
4444
4545/**
4646 * The single version number has the following structure:
4747 * MMNNPP00
4848 * Major version | Minor version | Patch version
4949 */
50- #define MBEDTLS_VERSION_NUMBER 0x02070400
51- #define MBEDTLS_VERSION_STRING "2.7.4 "
52- #define MBEDTLS_VERSION_STRING_FULL "mbed TLS 2.7.4 "
50+ #define MBEDTLS_VERSION_NUMBER 0x02070500
51+ #define MBEDTLS_VERSION_STRING "2.7.5 "
52+ #define MBEDTLS_VERSION_STRING_FULL "mbed TLS 2.7.5 "
5353
5454#if defined(MBEDTLS_VERSION_C )
5555
Original file line number Diff line number Diff line change @@ -141,15 +141,15 @@ endif(USE_STATIC_MBEDTLS_LIBRARY)
141141
142142if (USE_SHARED_MBEDTLS_LIBRARY)
143143 add_library (mbedcrypto SHARED ${src_crypto} )
144- set_target_properties (mbedcrypto PROPERTIES VERSION 2.7.4 SOVERSION 2)
144+ set_target_properties (mbedcrypto PROPERTIES VERSION 2.7.5 SOVERSION 2)
145145 target_link_libraries (mbedcrypto ${libs} )
146146
147147 add_library (mbedx509 SHARED ${src_x509} )
148- set_target_properties (mbedx509 PROPERTIES VERSION 2.7.4 SOVERSION 0)
148+ set_target_properties (mbedx509 PROPERTIES VERSION 2.7.5 SOVERSION 0)
149149 target_link_libraries (mbedx509 ${libs} mbedcrypto)
150150
151151 add_library (mbedtls SHARED ${src_tls} )
152- set_target_properties (mbedtls PROPERTIES VERSION 2.7.4 SOVERSION 10)
152+ set_target_properties (mbedtls PROPERTIES VERSION 2.7.5 SOVERSION 10)
153153 target_link_libraries (mbedtls ${libs} mbedx509)
154154
155155 install (TARGETS mbedtls mbedx509 mbedcrypto
Original file line number Diff line number Diff line change 11Check compiletime library version
2- check_compiletime_version:"2.7.4 "
2+ check_compiletime_version:"2.7.5 "
33
44Check runtime library version
5- check_runtime_version:"2.7.4 "
5+ check_runtime_version:"2.7.5 "
66
77Check for MBEDTLS_VERSION_C
88check_feature:"MBEDTLS_VERSION_C":0
You can’t perform that action at this time.
0 commit comments