Prepare for 1.3.11 release

This commit is contained in:
Paul Bakker 2015-06-04 14:49:19 +02:00
parent 721e6bbf71
commit 19eef51487
7 changed files with 11 additions and 11 deletions

View File

@ -1,6 +1,6 @@
mbed TLS ChangeLog (Sorted per branch, date)
= mbed TLS 1.3 branch
= mbed TLS 1.3.11 released 2015-06-04
Security
* With authmode set to SSL_VERIFY_OPTIONAL, verification of keyUsage and

View File

@ -4,7 +4,7 @@
*/
/**
* @mainpage mbed TLS v1.3.10 source code documentation
* @mainpage mbed TLS v1.3.11 source code documentation
*
* This documentation describes the internal structure of mbed TLS. It was
* automatically generated from specially formatted comment blocks in

View File

@ -28,7 +28,7 @@ DOXYFILE_ENCODING = UTF-8
# identify the project. Note that if you do not use Doxywizard you need
# to put quotes around the project name if it contains spaces.
PROJECT_NAME = "mbed TLS v1.3.10"
PROJECT_NAME = "mbed TLS v1.3.11"
# The PROJECT_NUMBER tag can be used to enter a project or revision number.
# This could be handy for archiving the generated documentation or

View File

@ -40,16 +40,16 @@
*/
#define POLARSSL_VERSION_MAJOR 1
#define POLARSSL_VERSION_MINOR 3
#define POLARSSL_VERSION_PATCH 10
#define POLARSSL_VERSION_PATCH 11
/**
* The single version number has the following structure:
* MMNNPP00
* Major version | Minor version | Patch version
*/
#define POLARSSL_VERSION_NUMBER 0x01030A00
#define POLARSSL_VERSION_STRING "1.3.10"
#define POLARSSL_VERSION_STRING_FULL "mbed TLS 1.3.10"
#define POLARSSL_VERSION_NUMBER 0x01030B00
#define POLARSSL_VERSION_STRING "1.3.11"
#define POLARSSL_VERSION_STRING_FULL "mbed TLS 1.3.11"
#if defined(POLARSSL_VERSION_C)

View File

@ -117,7 +117,7 @@ endif()
if(USE_SHARED_MBEDTLS_LIBRARY)
add_library(mbedtls SHARED ${src})
set_target_properties(mbedtls PROPERTIES VERSION 1.3.10 SOVERSION 8)
set_target_properties(mbedtls PROPERTIES VERSION 1.3.11 SOVERSION 9)
target_link_libraries(mbedtls ${libs})

View File

@ -31,7 +31,7 @@ LOCAL_CFLAGS += -fPIC -fpic
endif
endif
SOEXT=so.8
SOEXT=so.9
DLEXT=so
# OSX shared library extension:

View File

@ -1,8 +1,8 @@
Check compiletime library version
check_compiletime_version:"1.3.10"
check_compiletime_version:"1.3.11"
Check runtime library version
check_runtime_version:"1.3.10"
check_runtime_version:"1.3.11"
Check for POLARSSL_VERSION_C
check_feature:"POLARSSL_VERSION_C":0