Skip to content

Commit 59ae96f

Browse files
committed
Updated version number to 2.4.2 for release
1 parent 63bf86d commit 59ae96f

File tree

6 files changed

+12
-12
lines changed

6 files changed

+12
-12
lines changed

Diff for: 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 2.x.x branch released xxxx-xx-xx
3+
= mbed TLS 2.4.2 branch released 2017-03-08
44

55
Security
66
* Add checks to prevent signature forgeries for very large messages while

Diff for: doxygen/input/doc_mainpage.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
*/
2222

2323
/**
24-
* @mainpage mbed TLS v2.4.1 source code documentation
24+
* @mainpage mbed TLS v2.4.2 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

Diff for: 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.4.1"
31+
PROJECT_NAME = "mbed TLS v2.4.2"
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

Diff for: include/mbedtls/version.h

+4-4
Original file line numberDiff line numberDiff line change
@@ -39,16 +39,16 @@
3939
*/
4040
#define MBEDTLS_VERSION_MAJOR 2
4141
#define MBEDTLS_VERSION_MINOR 4
42-
#define MBEDTLS_VERSION_PATCH 1
42+
#define MBEDTLS_VERSION_PATCH 2
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 0x02040100
50-
#define MBEDTLS_VERSION_STRING "2.4.1"
51-
#define MBEDTLS_VERSION_STRING_FULL "mbed TLS 2.4.1"
49+
#define MBEDTLS_VERSION_NUMBER 0x02040200
50+
#define MBEDTLS_VERSION_STRING "2.4.2"
51+
#define MBEDTLS_VERSION_STRING_FULL "mbed TLS 2.4.2"
5252

5353
#if defined(MBEDTLS_VERSION_C)
5454

Diff for: library/CMakeLists.txt

+3-3
Original file line numberDiff line numberDiff line change
@@ -140,15 +140,15 @@ endif(USE_STATIC_MBEDTLS_LIBRARY)
140140

141141
if(USE_SHARED_MBEDTLS_LIBRARY)
142142
add_library(mbedcrypto SHARED ${src_crypto})
143-
set_target_properties(mbedcrypto PROPERTIES VERSION 2.4.1 SOVERSION 0)
143+
set_target_properties(mbedcrypto PROPERTIES VERSION 2.4.2 SOVERSION 0)
144144
target_link_libraries(mbedcrypto ${libs})
145145

146146
add_library(mbedx509 SHARED ${src_x509})
147-
set_target_properties(mbedx509 PROPERTIES VERSION 2.4.1 SOVERSION 0)
147+
set_target_properties(mbedx509 PROPERTIES VERSION 2.4.2 SOVERSION 0)
148148
target_link_libraries(mbedx509 ${libs} mbedcrypto)
149149

150150
add_library(mbedtls SHARED ${src_tls})
151-
set_target_properties(mbedtls PROPERTIES VERSION 2.4.1 SOVERSION 10)
151+
set_target_properties(mbedtls PROPERTIES VERSION 2.4.2 SOVERSION 10)
152152
target_link_libraries(mbedtls ${libs} mbedx509)
153153

154154
install(TARGETS mbedtls mbedx509 mbedcrypto

Diff for: 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.4.1"
2+
check_compiletime_version:"2.4.2"
33

44
Check runtime library version
5-
check_runtime_version:"2.4.1"
5+
check_runtime_version:"2.4.2"
66

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

0 commit comments

Comments
 (0)