Skip to content

Commit 9fdc58f

Browse files
author
Paul Bakker
committed
Ready for release 1.2.13
1 parent 530927b commit 9fdc58f

File tree

6 files changed

+12
-10
lines changed

6 files changed

+12
-10
lines changed

ChangeLog

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
PolarSSL ChangeLog
22

3-
= Version 1.2.z released not yet
3+
= Version 1.2.13 released 2015-02-16
4+
Note: Although PolarSSL has been renamed to mbed TLS, no changes reflecting
5+
this will be made in the 1.2 branch at this point.
46

57
Security
68
* Fix remotely-triggerable uninitialised pointer dereference caused by

doxygen/input/doc_mainpage.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*/
55

66
/**
7-
* @mainpage PolarSSL v1.2.12 source code documentation
7+
* @mainpage PolarSSL v1.2.13 source code documentation
88
*
99
* This documentation describes the internal structure of PolarSSL. It was
1010
* automatically generated from specially formatted comment blocks in

doxygen/polarssl.doxyfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ DOXYFILE_ENCODING = UTF-8
2525
# The PROJECT_NAME tag is a single word (or a sequence of words surrounded
2626
# by quotes) that should identify the project.
2727

28-
PROJECT_NAME = "PolarSSL v1.2.12"
28+
PROJECT_NAME = "PolarSSL v1.2.13"
2929

3030
# The PROJECT_NUMBER tag can be used to enter a project or revision number.
3131
# This could be handy for archiving the generated documentation or

include/polarssl/version.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,16 +36,16 @@
3636
*/
3737
#define POLARSSL_VERSION_MAJOR 1
3838
#define POLARSSL_VERSION_MINOR 2
39-
#define POLARSSL_VERSION_PATCH 12
39+
#define POLARSSL_VERSION_PATCH 13
4040

4141
/**
4242
* The single version number has the following structure:
4343
* MMNNPP00
4444
* Major version | Minor version | Patch version
4545
*/
46-
#define POLARSSL_VERSION_NUMBER 0x01020C00
47-
#define POLARSSL_VERSION_STRING "1.2.12"
48-
#define POLARSSL_VERSION_STRING_FULL "PolarSSL 1.2.12"
46+
#define POLARSSL_VERSION_NUMBER 0x01020D00
47+
#define POLARSSL_VERSION_STRING "1.2.13"
48+
#define POLARSSL_VERSION_STRING_FULL "PolarSSL 1.2.13"
4949

5050
#if defined(POLARSSL_VERSION_C)
5151

library/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ endif()
9090

9191
if(USE_SHARED_POLARSSL_LIBRARY)
9292
add_library(polarssl SHARED ${src})
93-
set_target_properties(polarssl PROPERTIES VERSION 1.2.12 SOVERSION 3)
93+
set_target_properties(polarssl PROPERTIES VERSION 1.2.13 SOVERSION 3)
9494

9595
target_link_libraries(polarssl ${libs})
9696

tests/suites/test_suite_version.data

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

44
Check runtime library version
5-
check_runtime_version:"1.2.12"
5+
check_runtime_version:"1.2.13"

0 commit comments

Comments
 (0)