Skip to content

Commit fcb8711

Browse files
committed
Bump version to Mbed TLS 2.16.3
1 parent 8940867 commit fcb8711

File tree

6 files changed

+12
-12
lines changed

6 files changed

+12
-12
lines changed

ChangeLog

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
mbed TLS ChangeLog (Sorted per branch, date)
22

3-
= mbed TLS x.x.x branch released xxxx-xx-xx
3+
= mbed TLS 2.16.3 branch released 2019-09-06
44

55
Security
66
* Fix a missing error detection in ECJPAKE. This could have caused a

doxygen/input/doc_mainpage.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
*/
2525

2626
/**
27-
* @mainpage mbed TLS v2.16.2 source code documentation
27+
* @mainpage mbed TLS v2.16.3 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

doxygen/mbedtls.doxyfile

+1-1
Original file line numberDiff line numberDiff 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.16.2"
31+
PROJECT_NAME = "mbed TLS v2.16.3"
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

include/mbedtls/version.h

+4-4
Original file line numberDiff line numberDiff line change
@@ -40,16 +40,16 @@
4040
*/
4141
#define MBEDTLS_VERSION_MAJOR 2
4242
#define MBEDTLS_VERSION_MINOR 16
43-
#define MBEDTLS_VERSION_PATCH 2
43+
#define MBEDTLS_VERSION_PATCH 3
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 0x02100200
51-
#define MBEDTLS_VERSION_STRING "2.16.2"
52-
#define MBEDTLS_VERSION_STRING_FULL "mbed TLS 2.16.2"
50+
#define MBEDTLS_VERSION_NUMBER 0x02100300
51+
#define MBEDTLS_VERSION_STRING "2.16.3"
52+
#define MBEDTLS_VERSION_STRING_FULL "mbed TLS 2.16.3"
5353

5454
#if defined(MBEDTLS_VERSION_C)
5555

library/CMakeLists.txt

+3-3
Original file line numberDiff line numberDiff line change
@@ -165,15 +165,15 @@ endif(USE_STATIC_MBEDTLS_LIBRARY)
165165

166166
if(USE_SHARED_MBEDTLS_LIBRARY)
167167
add_library(mbedcrypto SHARED ${src_crypto})
168-
set_target_properties(mbedcrypto PROPERTIES VERSION 2.16.2 SOVERSION 3)
168+
set_target_properties(mbedcrypto PROPERTIES VERSION 2.16.3 SOVERSION 3)
169169
target_link_libraries(mbedcrypto ${libs})
170170

171171
add_library(mbedx509 SHARED ${src_x509})
172-
set_target_properties(mbedx509 PROPERTIES VERSION 2.16.2 SOVERSION 0)
172+
set_target_properties(mbedx509 PROPERTIES VERSION 2.16.3 SOVERSION 0)
173173
target_link_libraries(mbedx509 ${libs} mbedcrypto)
174174

175175
add_library(mbedtls SHARED ${src_tls})
176-
set_target_properties(mbedtls PROPERTIES VERSION 2.16.2 SOVERSION 12)
176+
set_target_properties(mbedtls PROPERTIES VERSION 2.16.3 SOVERSION 12)
177177
target_link_libraries(mbedtls ${libs} mbedx509)
178178

179179
install(TARGETS mbedtls mbedx509 mbedcrypto

tests/suites/test_suite_version.data

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
Check compiletime library version
2-
check_compiletime_version:"2.16.2"
2+
check_compiletime_version:"2.16.3"
33

44
Check runtime library version
5-
check_runtime_version:"2.16.2"
5+
check_runtime_version:"2.16.3"
66

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

0 commit comments

Comments
 (0)