Skip to content

Commit 96d5265

Browse files
author
Paul Bakker
committed
Made ready for release 1.3.5
1 parent 5fff23b commit 96d5265

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
PolarSSL ChangeLog (Sorted per branch, date)
22

3-
= PolarSSL 1.3 branch
3+
= PolarSSL 1.3.5 released on 2014-03-26
44
Features
55
* HMAC-DRBG as a separate module
66
* Option to set the Curve preference order (disabled by default)

doxygen/input/doc_mainpage.h

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

66
/**
7-
* @mainpage PolarSSL v1.3.4 source code documentation
7+
* @mainpage PolarSSL v1.3.5 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

+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 = "PolarSSL v1.3.4"
31+
PROJECT_NAME = "PolarSSL v1.3.5"
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
@@ -39,16 +39,16 @@
3939
*/
4040
#define POLARSSL_VERSION_MAJOR 1
4141
#define POLARSSL_VERSION_MINOR 3
42-
#define POLARSSL_VERSION_PATCH 4
42+
#define POLARSSL_VERSION_PATCH 5
4343

4444
/**
4545
* The single version number has the following structure:
4646
* MMNNPP00
4747
* Major version | Minor version | Patch version
4848
*/
49-
#define POLARSSL_VERSION_NUMBER 0x01030400
50-
#define POLARSSL_VERSION_STRING "1.3.4"
51-
#define POLARSSL_VERSION_STRING_FULL "PolarSSL 1.3.4"
49+
#define POLARSSL_VERSION_NUMBER 0x01030500
50+
#define POLARSSL_VERSION_STRING "1.3.5"
51+
#define POLARSSL_VERSION_STRING_FULL "PolarSSL 1.3.5"
5252

5353
#if defined(POLARSSL_VERSION_C)
5454

library/CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ endif()
108108

109109
if(USE_SHARED_POLARSSL_LIBRARY)
110110
add_library(polarssl SHARED ${src})
111-
set_target_properties(polarssl PROPERTIES VERSION 1.3.4 SOVERSION 5)
111+
set_target_properties(polarssl PROPERTIES VERSION 1.3.5 SOVERSION 5)
112112

113113
target_link_libraries(polarssl ${libs})
114114

tests/suites/test_suite_version.data

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Check compiletime library version
2-
check_compiletime_version:"1.3.4"
2+
check_compiletime_version:"1.3.5"
33

44
Check runtime library version
5-
check_runtime_version:"1.3.4"
5+
check_runtime_version:"1.3.5"

0 commit comments

Comments
 (0)