File tree Expand file tree Collapse file tree 6 files changed +14
-14
lines changed
Expand file tree Collapse file tree 6 files changed +14
-14
lines changed Original file line number Diff line number Diff line change @@ -40,12 +40,12 @@ cmake_policy(SET CMP0012 NEW)
4040if (TEST_CPP)
4141 project ("Mbed TLS"
4242 LANGUAGES C CXX
43- VERSION 3.6.3
43+ VERSION 3.6.4
4444 )
4545else ()
4646 project ("Mbed TLS"
4747 LANGUAGES C
48- VERSION 3.6.3
48+ VERSION 3.6.4
4949 )
5050endif ()
5151
@@ -476,7 +476,7 @@ if(NOT DISABLE_PACKAGE_CONFIG_AND_INSTALL)
476476 write_basic_package_version_file (
477477 "cmake/MbedTLSConfigVersion.cmake"
478478 COMPATIBILITY SameMajorVersion
479- VERSION 3.6.3 )
479+ VERSION 3.6.4 )
480480
481481 install (
482482 FILES "${CMAKE_CURRENT_BINARY_DIR} /cmake/MbedTLSConfig.cmake"
Original file line number Diff line number Diff line change 1010 */
1111
1212/**
13- * @mainpage Mbed TLS v3.6.3 API Documentation
13+ * @mainpage Mbed TLS v3.6.4 API Documentation
1414 *
1515 * This documentation describes the internal structure of Mbed TLS. It was
1616 * automatically generated from specially formatted comment blocks in
Original file line number Diff line number Diff line change 1- PROJECT_NAME = "Mbed TLS v3.6.3 "
1+ PROJECT_NAME = "Mbed TLS v3.6.4 "
22OUTPUT_DIRECTORY = ../apidoc/
33FULL_PATH_NAMES = NO
44OPTIMIZE_OUTPUT_FOR_C = YES
Original file line number Diff line number Diff line change 2626 */
2727#define MBEDTLS_VERSION_MAJOR 3
2828#define MBEDTLS_VERSION_MINOR 6
29- #define MBEDTLS_VERSION_PATCH 3
29+ #define MBEDTLS_VERSION_PATCH 4
3030
3131/**
3232 * The single version number has the following structure:
3333 * MMNNPP00
3434 * Major version | Minor version | Patch version
3535 */
36- #define MBEDTLS_VERSION_NUMBER 0x03060300
37- #define MBEDTLS_VERSION_STRING "3.6.3 "
38- #define MBEDTLS_VERSION_STRING_FULL "Mbed TLS 3.6.3 "
36+ #define MBEDTLS_VERSION_NUMBER 0x03060400
37+ #define MBEDTLS_VERSION_STRING "3.6.4 "
38+ #define MBEDTLS_VERSION_STRING_FULL "Mbed TLS 3.6.4 "
3939
4040/* Macros for build-time platform detection */
4141
Original file line number Diff line number Diff line change @@ -300,7 +300,7 @@ endif(USE_STATIC_MBEDTLS_LIBRARY)
300300if (USE_SHARED_MBEDTLS_LIBRARY)
301301 set (CMAKE_LIBRARY_PATH ${CMAKE_CURRENT_BINARY_DIR} )
302302 add_library (${mbedcrypto_target} SHARED ${src_crypto} )
303- set_target_properties (${mbedcrypto_target} PROPERTIES VERSION 3.6.3 SOVERSION 16 )
303+ set_target_properties (${mbedcrypto_target} PROPERTIES VERSION 3.6.4 SOVERSION 16 )
304304 target_link_libraries (${mbedcrypto_target} PUBLIC ${libs} )
305305
306306 if (TARGET ${everest_target} )
@@ -312,11 +312,11 @@ if(USE_SHARED_MBEDTLS_LIBRARY)
312312 endif ()
313313
314314 add_library (${mbedx509_target} SHARED ${src_x509} )
315- set_target_properties (${mbedx509_target} PROPERTIES VERSION 3.6.3 SOVERSION 7 )
315+ set_target_properties (${mbedx509_target} PROPERTIES VERSION 3.6.4 SOVERSION 7 )
316316 target_link_libraries (${mbedx509_target} PUBLIC ${libs} ${mbedcrypto_target} )
317317
318318 add_library (${mbedtls_target} SHARED ${src_tls} )
319- set_target_properties (${mbedtls_target} PROPERTIES VERSION 3.6.3 SOVERSION 21 )
319+ set_target_properties (${mbedtls_target} PROPERTIES VERSION 3.6.4 SOVERSION 21 )
320320 target_link_libraries (${mbedtls_target} PUBLIC ${libs} ${mbedx509_target} )
321321endif (USE_SHARED_MBEDTLS_LIBRARY )
322322
Original file line number Diff line number Diff line change 11Check compile time library version
2- check_compiletime_version:"3.6.3 "
2+ check_compiletime_version:"3.6.4 "
33
44Check runtime library version
5- check_runtime_version:"3.6.3 "
5+ check_runtime_version:"3.6.4 "
66
77Check for MBEDTLS_VERSION_C
88check_feature:"MBEDTLS_VERSION_C":0
You can’t perform that action at this time.
0 commit comments