Skip to content

Commit 2f7f2b1

Browse files
committed
Merge remote-tracking branch 'restricted/pr/502' into mbedtls-2.1-restricted
2 parents d908494 + dcec5bb commit 2f7f2b1

File tree

7 files changed

+13
-13
lines changed

7 files changed

+13
-13
lines changed

ChangeLog

Lines changed: 1 addition & 1 deletion
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.1.14 branch released 2018-07-25
44

55
Security
66
* Fix a vulnerability in TLS ciphersuites based on CBC and using SHA-384,

doxygen/input/doc_mainpage.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
*/
2222

2323
/**
24-
* @mainpage mbed TLS v2.1.13 source code documentation
24+
* @mainpage mbed TLS v2.1.14 source code documentation
2525
*
2626
* This documentation describes the internal structure of mbed TLS. It was
2727
* automatically generated from specially formatted comment blocks in

doxygen/mbedtls.doxyfile

Lines changed: 1 addition & 1 deletion
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.1.13"
31+
PROJECT_NAME = "mbed TLS v2.1.14"
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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,16 +39,16 @@
3939
*/
4040
#define MBEDTLS_VERSION_MAJOR 2
4141
#define MBEDTLS_VERSION_MINOR 1
42-
#define MBEDTLS_VERSION_PATCH 13
42+
#define MBEDTLS_VERSION_PATCH 14
4343

4444
/**
4545
* The single version number has the following structure:
4646
* MMNNPP00
4747
* Major version | Minor version | Patch version
4848
*/
49-
#define MBEDTLS_VERSION_NUMBER 0x02010D00
50-
#define MBEDTLS_VERSION_STRING "2.1.13"
51-
#define MBEDTLS_VERSION_STRING_FULL "mbed TLS 2.1.13"
49+
#define MBEDTLS_VERSION_NUMBER 0x02010E00
50+
#define MBEDTLS_VERSION_STRING "2.1.14"
51+
#define MBEDTLS_VERSION_STRING_FULL "mbed TLS 2.1.14"
5252

5353
#if defined(MBEDTLS_VERSION_C)
5454

library/CMakeLists.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -138,15 +138,15 @@ endif(USE_STATIC_MBEDTLS_LIBRARY)
138138

139139
if(USE_SHARED_MBEDTLS_LIBRARY)
140140
add_library(mbedcrypto SHARED ${src_crypto})
141-
set_target_properties(mbedcrypto PROPERTIES VERSION 2.1.13 SOVERSION 0)
141+
set_target_properties(mbedcrypto PROPERTIES VERSION 2.1.14 SOVERSION 0)
142142
target_link_libraries(mbedcrypto ${libs})
143143

144144
add_library(mbedx509 SHARED ${src_x509})
145-
set_target_properties(mbedx509 PROPERTIES VERSION 2.1.13 SOVERSION 0)
145+
set_target_properties(mbedx509 PROPERTIES VERSION 2.1.14 SOVERSION 0)
146146
target_link_libraries(mbedx509 ${libs} mbedcrypto)
147147

148148
add_library(mbedtls SHARED ${src_tls})
149-
set_target_properties(mbedtls PROPERTIES VERSION 2.1.13 SOVERSION 10)
149+
set_target_properties(mbedtls PROPERTIES VERSION 2.1.14 SOVERSION 10)
150150
target_link_libraries(mbedtls ${libs} mbedx509)
151151

152152
install(TARGETS mbedtls mbedx509 mbedcrypto

tests/suites/test_suite_version.data

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
Check compiletime library version
2-
check_compiletime_version:"2.1.13"
2+
check_compiletime_version:"2.1.14"
33

44
Check runtime library version
5-
check_runtime_version:"2.1.13"
5+
check_runtime_version:"2.1.14"
66

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

yotta/data/module.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "mbedtls",
3-
"version": "2.1.13",
3+
"version": "2.1.14",
44
"description": "The mbed TLS crypto/SSL/TLS library",
55
"licenses": [
66
{

0 commit comments

Comments
 (0)