Skip to content

Commit ac01707

Browse files
Merge pull request #10757 from philljj/release
prepare for release 5.9.2
2 parents ad1cd47 + 0fe21bb commit ac01707

10 files changed

Lines changed: 985 additions & 315 deletions

File tree

CMakeLists.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ if("${CMAKE_SOURCE_DIR}" STREQUAL "${CMAKE_BINARY_DIR}")
3434
You must delete them, or cmake will refuse to work.")
3535
endif()
3636

37-
project(wolfssl VERSION 5.9.1 LANGUAGES C ASM)
37+
project(wolfssl VERSION 5.9.2 LANGUAGES C ASM)
3838

3939
# Set WOLFSSL_ROOT if not already defined
4040
if ("${WOLFSSL_ROOT}" STREQUAL "")
@@ -49,11 +49,11 @@ endif()
4949

5050
# shared library versioning
5151
# increment if interfaces have been removed or changed
52-
set(WOLFSSL_LIBRARY_VERSION_FIRST 44)
52+
set(WOLFSSL_LIBRARY_VERSION_FIRST 45)
5353

5454
# increment if interfaces have been added
5555
# set to zero if WOLFSSL_LIBRARY_VERSION_FIRST is incremented
56-
set(WOLFSSL_LIBRARY_VERSION_SECOND 2)
56+
set(WOLFSSL_LIBRARY_VERSION_SECOND 0)
5757

5858
# increment if source code has changed
5959
# set to zero if WOLFSSL_LIBRARY_VERSION_FIRST is incremented or

ChangeLog.md

Lines changed: 348 additions & 54 deletions
Large diffs are not rendered by default.

IDE/WIN-SRTP-KDF-140-3/wolfssl-fips.rc

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

5353
VS_VERSION_INFO VERSIONINFO
54-
FILEVERSION 5,9,1,0
55-
PRODUCTVERSION 5,9,1,0
54+
FILEVERSION 5,9,2,0
55+
PRODUCTVERSION 5,9,2,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.9.1.0"
72+
VALUE "FileVersion", "5.9.2.0"
7373
VALUE "InternalName", "wolfssl-fips"
7474
VALUE "LegalCopyright", "Copyright (C) 2023"
7575
VALUE "OriginalFilename", "wolfssl-fips.dll"
7676
VALUE "ProductName", "wolfSSL FIPS"
77-
VALUE "ProductVersion", "5.9.1.0"
77+
VALUE "ProductVersion", "5.9.2.0"
7878
END
7979
END
8080
BLOCK "VarFileInfo"

IDE/WIN10/wolfssl-fips.rc

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

5353
VS_VERSION_INFO VERSIONINFO
54-
FILEVERSION 5,9,1,0
55-
PRODUCTVERSION 5,9,1,0
54+
FILEVERSION 5,9,2,0
55+
PRODUCTVERSION 5,9,2,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.9.1.0"
72+
VALUE "FileVersion", "5.9.2.0"
7373
VALUE "InternalName", "wolfssl-fips"
7474
VALUE "LegalCopyright", "Copyright (C) 2026"
7575
VALUE "OriginalFilename", "wolfssl-fips.dll"
7676
VALUE "ProductName", "wolfSSL FIPS"
77-
VALUE "ProductVersion", "5.9.1.0"
77+
VALUE "ProductVersion", "5.9.2.0"
7878
END
7979
END
8080
BLOCK "VarFileInfo"

README

Lines changed: 309 additions & 121 deletions
Large diffs are not rendered by default.

README.md

Lines changed: 310 additions & 122 deletions
Large diffs are not rendered by default.

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-2026 wolfSSL Inc.])
99
AC_PREREQ([2.69])
10-
AC_INIT([wolfssl],[5.9.1],[https://github.com/wolfssl/wolfssl/issues],[wolfssl],[https://www.wolfssl.com])
10+
AC_INIT([wolfssl],[5.9.2],[https://github.com/wolfssl/wolfssl/issues],[wolfssl],[https://www.wolfssl.com])
1111
AC_CONFIG_AUX_DIR([build-aux])
1212

1313
# Inhibit unwanted regeneration of autotools artifacts by Makefile.
@@ -60,11 +60,11 @@ AC_SUBST([CONFIGURE_OPTIONS])
6060
# The three numbers in the libwolfssl.so.*.*.* file name. Unfortunately
6161

6262
# increment if interfaces have been removed or changed
63-
WOLFSSL_LIBRARY_VERSION_FIRST=44
63+
WOLFSSL_LIBRARY_VERSION_FIRST=45
6464

6565
# increment if interfaces have been added
6666
# set to zero if WOLFSSL_LIBRARY_VERSION_FIRST is incremented
67-
WOLFSSL_LIBRARY_VERSION_SECOND=2
67+
WOLFSSL_LIBRARY_VERSION_SECOND=0
6868

6969
# increment if source code has changed
7070
# set to zero if WOLFSSL_LIBRARY_VERSION_FIRST is incremented or

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.9.1"
32-
#define LIBWOLFSSL_VERSION_HEX 0x05009001
31+
#define LIBWOLFSSL_VERSION_STRING "5.9.2"
32+
#define LIBWOLFSSL_VERSION_HEX 0x05009002
3333

3434
#ifdef __cplusplus
3535
}

wrapper/Ada/alire.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
name = "wolfssl"
22
description = "WolfSSL encryption library and its Ada bindings"
3-
version = "5.8.0"
3+
version = "5.9.2"
44

55
authors = ["WolfSSL Team <support@wolfssl.com>"]
66
maintainers = ["Fernando Oleo Blanco <irvise@irvise.xyz>", "Manuel Gomez <mgrojo@gmail.com>"]
77
maintainers-logins = ["Irvise", "mgrojo"]
8-
licenses = "GPL-2.0-only"
8+
licenses = "GPL-3.0-only"
99
website = "https://www.wolfssl.com/"
1010
project-files = ["wolfssl.gpr"]
1111
tags = ["ssl", "tls", "embedded", "spark"]

0 commit comments

Comments
 (0)