File tree 6 files changed +14
-14
lines changed
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)
40
40
if (TEST_CPP)
41
41
project ("Mbed TLS"
42
42
LANGUAGES C CXX
43
- VERSION 3.6.1
43
+ VERSION 3.6.2
44
44
)
45
45
else ()
46
46
project ("Mbed TLS"
47
47
LANGUAGES C
48
- VERSION 3.6.1
48
+ VERSION 3.6.2
49
49
)
50
50
endif ()
51
51
@@ -449,7 +449,7 @@ if(NOT DISABLE_PACKAGE_CONFIG_AND_INSTALL)
449
449
write_basic_package_version_file(
450
450
"cmake/MbedTLSConfigVersion.cmake"
451
451
COMPATIBILITY SameMajorVersion
452
- VERSION 3.6.1 )
452
+ VERSION 3.6.2 )
453
453
454
454
install (
455
455
FILES "${CMAKE_CURRENT_BINARY_DIR} /cmake/MbedTLSConfig.cmake"
Original file line number Diff line number Diff line change 10
10
*/
11
11
12
12
/**
13
- * @mainpage Mbed TLS v3.6.1 API Documentation
13
+ * @mainpage Mbed TLS v3.6.2 API Documentation
14
14
*
15
15
* This documentation describes the internal structure of Mbed TLS. It was
16
16
* 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.1 "
1
+ PROJECT_NAME = "Mbed TLS v3.6.2 "
2
2
OUTPUT_DIRECTORY = ../apidoc/
3
3
FULL_PATH_NAMES = NO
4
4
OPTIMIZE_OUTPUT_FOR_C = YES
Original file line number Diff line number Diff line change 26
26
*/
27
27
#define MBEDTLS_VERSION_MAJOR 3
28
28
#define MBEDTLS_VERSION_MINOR 6
29
- #define MBEDTLS_VERSION_PATCH 1
29
+ #define MBEDTLS_VERSION_PATCH 2
30
30
31
31
/**
32
32
* The single version number has the following structure:
33
33
* MMNNPP00
34
34
* Major version | Minor version | Patch version
35
35
*/
36
- #define MBEDTLS_VERSION_NUMBER 0x03060100
37
- #define MBEDTLS_VERSION_STRING "3.6.1 "
38
- #define MBEDTLS_VERSION_STRING_FULL "Mbed TLS 3.6.1 "
36
+ #define MBEDTLS_VERSION_NUMBER 0x03060200
37
+ #define MBEDTLS_VERSION_STRING "3.6.2 "
38
+ #define MBEDTLS_VERSION_STRING_FULL "Mbed TLS 3.6.2 "
39
39
40
40
/* Macros for build-time platform detection */
41
41
Original file line number Diff line number Diff line change @@ -300,7 +300,7 @@ endif(USE_STATIC_MBEDTLS_LIBRARY)
300
300
if (USE_SHARED_MBEDTLS_LIBRARY)
301
301
set (CMAKE_LIBRARY_PATH ${CMAKE_CURRENT_BINARY_DIR} )
302
302
add_library (${mbedcrypto_target} SHARED ${src_crypto} )
303
- set_target_properties (${mbedcrypto_target} PROPERTIES VERSION 3.6.1 SOVERSION 16)
303
+ set_target_properties (${mbedcrypto_target} PROPERTIES VERSION 3.6.2 SOVERSION 16)
304
304
target_link_libraries (${mbedcrypto_target} PUBLIC ${libs} )
305
305
306
306
if (TARGET ${everest_target} )
@@ -312,11 +312,11 @@ if(USE_SHARED_MBEDTLS_LIBRARY)
312
312
endif ()
313
313
314
314
add_library (${mbedx509_target} SHARED ${src_x509} )
315
- set_target_properties (${mbedx509_target} PROPERTIES VERSION 3.6.1 SOVERSION 7)
315
+ set_target_properties (${mbedx509_target} PROPERTIES VERSION 3.6.2 SOVERSION 7)
316
316
target_link_libraries (${mbedx509_target} PUBLIC ${libs} ${mbedcrypto_target} )
317
317
318
318
add_library (${mbedtls_target} SHARED ${src_tls} )
319
- set_target_properties (${mbedtls_target} PROPERTIES VERSION 3.6.1 SOVERSION 21)
319
+ set_target_properties (${mbedtls_target} PROPERTIES VERSION 3.6.2 SOVERSION 21)
320
320
target_link_libraries (${mbedtls_target} PUBLIC ${libs} ${mbedx509_target} )
321
321
endif (USE_SHARED_MBEDTLS_LIBRARY)
322
322
Original file line number Diff line number Diff line change 1
1
Check compile time library version
2
- check_compiletime_version:"3.6.1 "
2
+ check_compiletime_version:"3.6.2 "
3
3
4
4
Check runtime library version
5
- check_runtime_version:"3.6.1 "
5
+ check_runtime_version:"3.6.2 "
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