Skip to content

Commit a003338

Browse files
committed
bump version to 5.6.6
1 parent 4e08196 commit a003338

File tree

5 files changed

+12
-12
lines changed

5 files changed

+12
-12
lines changed

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ if("${CMAKE_SOURCE_DIR}" STREQUAL "${CMAKE_BINARY_DIR}")
2828
You must delete them, or cmake will refuse to work.")
2929
endif()
3030

31-
project(wolfssl VERSION 5.6.4 LANGUAGES C ASM)
31+
project(wolfssl VERSION 5.6.6 LANGUAGES C ASM)
3232

3333
# Set WOLFSSL_ROOT if not already defined
3434
if ("${WOLFSSL_ROOT}" STREQUAL "")
@@ -43,7 +43,7 @@ endif()
4343

4444
# shared library versioning
4545
# increment if interfaces have been added, removed or changed
46-
set(LIBTOOL_CURRENT 41)
46+
set(LIBTOOL_CURRENT 42)
4747
# increment if source code has changed set to zero if current is incremented
4848
set(LIBTOOL_REVISION 0)
4949
# increment if interfaces have been added set to zero if interfaces have been

IDE/WIN10/wolfssl-fips.rc

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,8 @@ END
5151
//
5252

5353
VS_VERSION_INFO VERSIONINFO
54-
FILEVERSION 5,6,4,0
55-
PRODUCTVERSION 5,6,4,0
54+
FILEVERSION 5,6,6,0
55+
PRODUCTVERSION 5,6,6,0
5656
FILEFLAGSMASK 0x3fL
5757
#ifdef _DEBUG
5858
FILEFLAGS 0x1L
@@ -69,12 +69,12 @@ BEGIN
6969
BEGIN
7070
VALUE "CompanyName", "wolfSSL Inc."
7171
VALUE "FileDescription", "The wolfSSL FIPS embedded SSL library is a lightweight, portable, C-language-based SSL/TLS library targeted at IoT, embedded, and RTOS environments primarily because of its size, speed, and feature set."
72-
VALUE "FileVersion", "5.6.4.0"
72+
VALUE "FileVersion", "5.6.6.0"
7373
VALUE "InternalName", "wolfssl-fips"
74-
VALUE "LegalCopyright", "Copyright (C) 2022"
74+
VALUE "LegalCopyright", "Copyright (C) 2023"
7575
VALUE "OriginalFilename", "wolfssl-fips.dll"
7676
VALUE "ProductName", "wolfSSL FIPS"
77-
VALUE "ProductVersion", "5.6.4.0"
77+
VALUE "ProductVersion", "5.6.6.0"
7878
END
7979
END
8080
BLOCK "VarFileInfo"

configure.ac

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
#
88
AC_COPYRIGHT([Copyright (C) 2006-2023 wolfSSL Inc.])
99
AC_PREREQ([2.69])
10-
AC_INIT([wolfssl],[5.6.4],[https://github.com/wolfssl/wolfssl/issues],[wolfssl],[https://www.wolfssl.com])
10+
AC_INIT([wolfssl],[5.6.6],[https://github.com/wolfssl/wolfssl/issues],[wolfssl],[https://www.wolfssl.com])
1111
AC_CONFIG_AUX_DIR([build-aux])
1212

1313
# The following sets CFLAGS to empty if unset on command line. We do not
@@ -46,10 +46,10 @@ AC_SUBST([WOLFSSL_CONFIG_ARGS])
4646
# shared library versioning
4747
# The three numbers in the libwolfssl.so.*.*.* file name. Unfortunately
4848
# these numbers don't always line up nicely with the library version.
49-
WOLFSSL_LIBRARY_VERSION_FIRST=41
49+
WOLFSSL_LIBRARY_VERSION_FIRST=42
5050
WOLFSSL_LIBRARY_VERSION_SECOND=0
5151
WOLFSSL_LIBRARY_VERSION_THIRD=0
52-
WOLFSSL_LIBRARY_VERSION=41:0:0
52+
WOLFSSL_LIBRARY_VERSION=42:0:0
5353
# | | |
5454
# +------+ | +---+
5555
# | | |

wolfssl.rc

0 Bytes
Binary file not shown.

wolfssl/version.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@
2828
extern "C" {
2929
#endif
3030

31-
#define LIBWOLFSSL_VERSION_STRING "5.6.4"
32-
#define LIBWOLFSSL_VERSION_HEX 0x05006004
31+
#define LIBWOLFSSL_VERSION_STRING "5.6.6"
32+
#define LIBWOLFSSL_VERSION_HEX 0x05006006
3333

3434
#ifdef __cplusplus
3535
}

0 commit comments

Comments
 (0)