Skip to content

Commit 5dfca1e

Browse files
Patatersimonbutcher
authored andcommitted
Update library version to 2.15.1
1 parent 41f9519 commit 5dfca1e

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

doxygen/input/doc_mainpage.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
*/
2525

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

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.15.0"
31+
PROJECT_NAME = "mbed TLS v2.15.1"
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
@@ -40,16 +40,16 @@
4040
*/
4141
#define MBEDTLS_VERSION_MAJOR 2
4242
#define MBEDTLS_VERSION_MINOR 15
43-
#define MBEDTLS_VERSION_PATCH 0
43+
#define MBEDTLS_VERSION_PATCH 1
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 0x020F0000
51-
#define MBEDTLS_VERSION_STRING "2.15.0"
52-
#define MBEDTLS_VERSION_STRING_FULL "mbed TLS 2.15.0"
50+
#define MBEDTLS_VERSION_NUMBER 0x020F0100
51+
#define MBEDTLS_VERSION_STRING "2.15.1"
52+
#define MBEDTLS_VERSION_STRING_FULL "mbed TLS 2.15.1"
5353

5454
#if defined(MBEDTLS_VERSION_C)
5555

library/CMakeLists.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -176,20 +176,20 @@ endif(USE_STATIC_MBEDTLS_LIBRARY)
176176
if(USE_SHARED_MBEDTLS_LIBRARY)
177177
if(NOT USE_CRYPTO_SUBMODULE)
178178
add_library(mbedcrypto SHARED ${src_crypto})
179-
set_target_properties(mbedcrypto PROPERTIES VERSION 2.15.0 SOVERSION 3)
179+
set_target_properties(mbedcrypto PROPERTIES VERSION 2.15.1 SOVERSION 3)
180180
target_link_libraries(mbedcrypto ${libs})
181181
target_include_directories(mbedcrypto PUBLIC ${CMAKE_SOURCE_DIR}/include/)
182182
endif()
183183

184184
add_library(mbedx509 SHARED ${src_x509})
185-
set_target_properties(mbedx509 PROPERTIES VERSION 2.15.0 SOVERSION 0)
185+
set_target_properties(mbedx509 PROPERTIES VERSION 2.15.1 SOVERSION 0)
186186
target_link_libraries(mbedx509 ${libs} mbedcrypto)
187187
target_include_directories(mbedx509
188188
PUBLIC ${CMAKE_SOURCE_DIR}/include/
189189
PUBLIC ${CMAKE_SOURCE_DIR}/crypto/include/)
190190

191191
add_library(mbedtls SHARED ${src_tls})
192-
set_target_properties(mbedtls PROPERTIES VERSION 2.15.0 SOVERSION 12)
192+
set_target_properties(mbedtls PROPERTIES VERSION 2.15.1 SOVERSION 12)
193193
target_link_libraries(mbedtls ${libs} mbedx509)
194194
target_include_directories(mbedtls
195195
PUBLIC ${CMAKE_SOURCE_DIR}/include/

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.15.0"
2+
check_compiletime_version:"2.15.1"
33

44
Check runtime library version
5-
check_runtime_version:"2.15.0"
5+
check_runtime_version:"2.15.1"
66

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

0 commit comments

Comments
 (0)