Skip to content

Commit a712d8d

Browse files
committedOct 14, 2024
Bump version to 3.6.2
Signed-off-by: Gilles Peskine <Gilles.Peskine@arm.com>
1 parent 453fd05 commit a712d8d

File tree

6 files changed

+14
-14
lines changed

6 files changed

+14
-14
lines changed
 

‎CMakeLists.txt

+3-3
Original file line numberDiff line numberDiff line change
@@ -40,12 +40,12 @@ cmake_policy(SET CMP0012 NEW)
4040
if(TEST_CPP)
4141
project("Mbed TLS"
4242
LANGUAGES C CXX
43-
VERSION 3.6.1
43+
VERSION 3.6.2
4444
)
4545
else()
4646
project("Mbed TLS"
4747
LANGUAGES C
48-
VERSION 3.6.1
48+
VERSION 3.6.2
4949
)
5050
endif()
5151

@@ -449,7 +449,7 @@ if(NOT DISABLE_PACKAGE_CONFIG_AND_INSTALL)
449449
write_basic_package_version_file(
450450
"cmake/MbedTLSConfigVersion.cmake"
451451
COMPATIBILITY SameMajorVersion
452-
VERSION 3.6.1)
452+
VERSION 3.6.2)
453453

454454
install(
455455
FILES "${CMAKE_CURRENT_BINARY_DIR}/cmake/MbedTLSConfig.cmake"

‎doxygen/input/doc_mainpage.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
*/
1111

1212
/**
13-
* @mainpage Mbed TLS v3.6.1 API Documentation
13+
* @mainpage Mbed TLS v3.6.2 API Documentation
1414
*
1515
* This documentation describes the internal structure of Mbed TLS. It was
1616
* automatically generated from specially formatted comment blocks in

‎doxygen/mbedtls.doxyfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
PROJECT_NAME = "Mbed TLS v3.6.1"
1+
PROJECT_NAME = "Mbed TLS v3.6.2"
22
OUTPUT_DIRECTORY = ../apidoc/
33
FULL_PATH_NAMES = NO
44
OPTIMIZE_OUTPUT_FOR_C = YES

‎include/mbedtls/build_info.h

+4-4
Original file line numberDiff line numberDiff line change
@@ -26,16 +26,16 @@
2626
*/
2727
#define MBEDTLS_VERSION_MAJOR 3
2828
#define MBEDTLS_VERSION_MINOR 6
29-
#define MBEDTLS_VERSION_PATCH 1
29+
#define MBEDTLS_VERSION_PATCH 2
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 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"
3939

4040
/* Macros for build-time platform detection */
4141

‎library/CMakeLists.txt

+3-3
Original file line numberDiff line numberDiff line change
@@ -300,7 +300,7 @@ endif(USE_STATIC_MBEDTLS_LIBRARY)
300300
if(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.1 SOVERSION 16)
303+
set_target_properties(${mbedcrypto_target} PROPERTIES VERSION 3.6.2 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.1 SOVERSION 7)
315+
set_target_properties(${mbedx509_target} PROPERTIES VERSION 3.6.2 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.1 SOVERSION 21)
319+
set_target_properties(${mbedtls_target} PROPERTIES VERSION 3.6.2 SOVERSION 21)
320320
target_link_libraries(${mbedtls_target} PUBLIC ${libs} ${mbedx509_target})
321321
endif(USE_SHARED_MBEDTLS_LIBRARY)
322322

‎tests/suites/test_suite_version.data

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
Check compile time library version
2-
check_compiletime_version:"3.6.1"
2+
check_compiletime_version:"3.6.2"
33

44
Check runtime library version
5-
check_runtime_version:"3.6.1"
5+
check_runtime_version:"3.6.2"
66

77
Check for MBEDTLS_VERSION_C
88
check_feature:"MBEDTLS_VERSION_C":0

0 commit comments

Comments
 (0)