bump version to 5.6.6
This commit is contained in:
parent
4e081960d3
commit
a003338a88
@ -28,7 +28,7 @@ if("${CMAKE_SOURCE_DIR}" STREQUAL "${CMAKE_BINARY_DIR}")
|
|||||||
You must delete them, or cmake will refuse to work.")
|
You must delete them, or cmake will refuse to work.")
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
project(wolfssl VERSION 5.6.4 LANGUAGES C ASM)
|
project(wolfssl VERSION 5.6.6 LANGUAGES C ASM)
|
||||||
|
|
||||||
# Set WOLFSSL_ROOT if not already defined
|
# Set WOLFSSL_ROOT if not already defined
|
||||||
if ("${WOLFSSL_ROOT}" STREQUAL "")
|
if ("${WOLFSSL_ROOT}" STREQUAL "")
|
||||||
@ -43,7 +43,7 @@ endif()
|
|||||||
|
|
||||||
# shared library versioning
|
# shared library versioning
|
||||||
# increment if interfaces have been added, removed or changed
|
# increment if interfaces have been added, removed or changed
|
||||||
set(LIBTOOL_CURRENT 41)
|
set(LIBTOOL_CURRENT 42)
|
||||||
# increment if source code has changed set to zero if current is incremented
|
# increment if source code has changed set to zero if current is incremented
|
||||||
set(LIBTOOL_REVISION 0)
|
set(LIBTOOL_REVISION 0)
|
||||||
# increment if interfaces have been added set to zero if interfaces have been
|
# increment if interfaces have been added set to zero if interfaces have been
|
||||||
|
@ -51,8 +51,8 @@ END
|
|||||||
//
|
//
|
||||||
|
|
||||||
VS_VERSION_INFO VERSIONINFO
|
VS_VERSION_INFO VERSIONINFO
|
||||||
FILEVERSION 5,6,4,0
|
FILEVERSION 5,6,6,0
|
||||||
PRODUCTVERSION 5,6,4,0
|
PRODUCTVERSION 5,6,6,0
|
||||||
FILEFLAGSMASK 0x3fL
|
FILEFLAGSMASK 0x3fL
|
||||||
#ifdef _DEBUG
|
#ifdef _DEBUG
|
||||||
FILEFLAGS 0x1L
|
FILEFLAGS 0x1L
|
||||||
@ -69,12 +69,12 @@ BEGIN
|
|||||||
BEGIN
|
BEGIN
|
||||||
VALUE "CompanyName", "wolfSSL Inc."
|
VALUE "CompanyName", "wolfSSL Inc."
|
||||||
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."
|
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."
|
||||||
VALUE "FileVersion", "5.6.4.0"
|
VALUE "FileVersion", "5.6.6.0"
|
||||||
VALUE "InternalName", "wolfssl-fips"
|
VALUE "InternalName", "wolfssl-fips"
|
||||||
VALUE "LegalCopyright", "Copyright (C) 2022"
|
VALUE "LegalCopyright", "Copyright (C) 2023"
|
||||||
VALUE "OriginalFilename", "wolfssl-fips.dll"
|
VALUE "OriginalFilename", "wolfssl-fips.dll"
|
||||||
VALUE "ProductName", "wolfSSL FIPS"
|
VALUE "ProductName", "wolfSSL FIPS"
|
||||||
VALUE "ProductVersion", "5.6.4.0"
|
VALUE "ProductVersion", "5.6.6.0"
|
||||||
END
|
END
|
||||||
END
|
END
|
||||||
BLOCK "VarFileInfo"
|
BLOCK "VarFileInfo"
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
#
|
#
|
||||||
AC_COPYRIGHT([Copyright (C) 2006-2023 wolfSSL Inc.])
|
AC_COPYRIGHT([Copyright (C) 2006-2023 wolfSSL Inc.])
|
||||||
AC_PREREQ([2.69])
|
AC_PREREQ([2.69])
|
||||||
AC_INIT([wolfssl],[5.6.4],[https://github.com/wolfssl/wolfssl/issues],[wolfssl],[https://www.wolfssl.com])
|
AC_INIT([wolfssl],[5.6.6],[https://github.com/wolfssl/wolfssl/issues],[wolfssl],[https://www.wolfssl.com])
|
||||||
AC_CONFIG_AUX_DIR([build-aux])
|
AC_CONFIG_AUX_DIR([build-aux])
|
||||||
|
|
||||||
# The following sets CFLAGS to empty if unset on command line. We do not
|
# The following sets CFLAGS to empty if unset on command line. We do not
|
||||||
@ -46,10 +46,10 @@ AC_SUBST([WOLFSSL_CONFIG_ARGS])
|
|||||||
# shared library versioning
|
# shared library versioning
|
||||||
# The three numbers in the libwolfssl.so.*.*.* file name. Unfortunately
|
# The three numbers in the libwolfssl.so.*.*.* file name. Unfortunately
|
||||||
# these numbers don't always line up nicely with the library version.
|
# these numbers don't always line up nicely with the library version.
|
||||||
WOLFSSL_LIBRARY_VERSION_FIRST=41
|
WOLFSSL_LIBRARY_VERSION_FIRST=42
|
||||||
WOLFSSL_LIBRARY_VERSION_SECOND=0
|
WOLFSSL_LIBRARY_VERSION_SECOND=0
|
||||||
WOLFSSL_LIBRARY_VERSION_THIRD=0
|
WOLFSSL_LIBRARY_VERSION_THIRD=0
|
||||||
WOLFSSL_LIBRARY_VERSION=41:0:0
|
WOLFSSL_LIBRARY_VERSION=42:0:0
|
||||||
# | | |
|
# | | |
|
||||||
# +------+ | +---+
|
# +------+ | +---+
|
||||||
# | | |
|
# | | |
|
||||||
|
BIN
wolfssl.rc
BIN
wolfssl.rc
Binary file not shown.
@ -28,8 +28,8 @@
|
|||||||
extern "C" {
|
extern "C" {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#define LIBWOLFSSL_VERSION_STRING "5.6.4"
|
#define LIBWOLFSSL_VERSION_STRING "5.6.6"
|
||||||
#define LIBWOLFSSL_VERSION_HEX 0x05006004
|
#define LIBWOLFSSL_VERSION_HEX 0x05006006
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user