Skip to content

Commit c1d54bb

Browse files
committed
Update library version to 1.3.18
1 parent 2d0ffbb commit c1d54bb

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
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 1.3.x branch 2016-xx-xx
3+
= mbed TLS 1.3.18 branch 2016-10-17
44

55
Security
66
* Removed the MBEDTLS_SSL_AEAD_RANDOM_IV option, because it was not compliant

doxygen/input/doc_mainpage.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*/
55

66
/**
7-
* @mainpage mbed TLS v1.3.17 source code documentation
7+
* @mainpage mbed TLS v1.3.18 source code documentation
88
*
99
* This documentation describes the internal structure of mbed TLS. It was
1010
* 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 v1.3.17"
31+
PROJECT_NAME = "mbed TLS v1.3.18"
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/polarssl/version.h

+4-4
Original file line numberDiff line numberDiff line change
@@ -40,16 +40,16 @@
4040
*/
4141
#define POLARSSL_VERSION_MAJOR 1
4242
#define POLARSSL_VERSION_MINOR 3
43-
#define POLARSSL_VERSION_PATCH 17
43+
#define POLARSSL_VERSION_PATCH 18
4444

4545
/**
4646
* The single version number has the following structure:
4747
* MMNNPP00
4848
* Major version | Minor version | Patch version
4949
*/
50-
#define POLARSSL_VERSION_NUMBER 0x01031100
51-
#define POLARSSL_VERSION_STRING "1.3.17"
52-
#define POLARSSL_VERSION_STRING_FULL "mbed TLS 1.3.17"
50+
#define POLARSSL_VERSION_NUMBER 0x01031200
51+
#define POLARSSL_VERSION_STRING "1.3.18"
52+
#define POLARSSL_VERSION_STRING_FULL "mbed TLS 1.3.18"
5353

5454
#if defined(POLARSSL_VERSION_C)
5555

library/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ endif()
117117

118118
if(USE_SHARED_MBEDTLS_LIBRARY)
119119
add_library(mbedtls SHARED ${src})
120-
set_target_properties(mbedtls PROPERTIES VERSION 1.3.17 SOVERSION 9)
120+
set_target_properties(mbedtls PROPERTIES VERSION 1.3.18 SOVERSION 9)
121121

122122
target_link_libraries(mbedtls ${libs})
123123

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:"1.3.17"
2+
check_compiletime_version:"1.3.18"
33

44
Check runtime library version
5-
check_runtime_version:"1.3.17"
5+
check_runtime_version:"1.3.18"
66

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

0 commit comments

Comments
 (0)