prepare for release 4.8.0

This commit is contained in:
JacobBarthelmeh
2021-07-08 12:02:40 -06:00
parent a250e1f23a
commit 500a6c8b27
6 changed files with 11 additions and 7 deletions

View File

@@ -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 4.7.1 LANGUAGES C) project(wolfssl VERSION 4.8.0 LANGUAGES C)
# shared library versioning # shared library versioning
# increment if interfaces have been added, removed or changed # increment if interfaces have been added, removed or changed

View File

@@ -7,7 +7,7 @@
# #
AC_COPYRIGHT([Copyright (C) 2006-2020 wolfSSL Inc.]) AC_COPYRIGHT([Copyright (C) 2006-2020 wolfSSL Inc.])
AC_PREREQ([2.69]) AC_PREREQ([2.69])
AC_INIT([wolfssl],[4.7.1],[https://github.com/wolfssl/wolfssl/issues],[wolfssl],[https://www.wolfssl.com]) AC_INIT([wolfssl],[4.8.0],[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
@@ -36,7 +36,7 @@ LT_PREREQ([2.4.2])
LT_INIT([disable-static win32-dll]) LT_INIT([disable-static win32-dll])
#shared library versioning #shared library versioning
WOLFSSL_LIBRARY_VERSION=28:1:4 WOLFSSL_LIBRARY_VERSION=29:0:5
# | | | # | | |
# +------+ | +---+ # +------+ | +---+
# | | | # | | |

View File

@@ -74,7 +74,7 @@ mkdir -p $RPM_BUILD_ROOT/
%{_libdir}/libwolfssl.la %{_libdir}/libwolfssl.la
%{_libdir}/libwolfssl.so %{_libdir}/libwolfssl.so
%{_libdir}/libwolfssl.so.24 %{_libdir}/libwolfssl.so.24
%{_libdir}/libwolfssl.so.24.4.0 %{_libdir}/libwolfssl.so.24.5.0
%files devel %files devel
%defattr(-,root,root,-) %defattr(-,root,root,-)
@@ -256,6 +256,7 @@ mkdir -p $RPM_BUILD_ROOT/
%{_includedir}/wolfssl/wolfcrypt/dh.h %{_includedir}/wolfssl/wolfcrypt/dh.h
%{_includedir}/wolfssl/wolfcrypt/dsa.h %{_includedir}/wolfssl/wolfcrypt/dsa.h
%{_includedir}/wolfssl/wolfcrypt/ecc.h %{_includedir}/wolfssl/wolfcrypt/ecc.h
%{_includedir}/wolfssl/wolfcrypt/eccsi.h
%{_includedir}/wolfssl/wolfcrypt/ed25519.h %{_includedir}/wolfssl/wolfcrypt/ed25519.h
%{_includedir}/wolfssl/wolfcrypt/ed448.h %{_includedir}/wolfssl/wolfcrypt/ed448.h
%{_includedir}/wolfssl/wolfcrypt/error-crypt.h %{_includedir}/wolfssl/wolfcrypt/error-crypt.h
@@ -287,6 +288,7 @@ mkdir -p $RPM_BUILD_ROOT/
%{_includedir}/wolfssl/wolfcrypt/ripemd.h %{_includedir}/wolfssl/wolfcrypt/ripemd.h
%{_includedir}/wolfssl/wolfcrypt/rc2.h %{_includedir}/wolfssl/wolfcrypt/rc2.h
%{_includedir}/wolfssl/wolfcrypt/rsa.h %{_includedir}/wolfssl/wolfcrypt/rsa.h
%{_includedir}/wolfssl/wolfcrypt/sakke.h
%{_includedir}/wolfssl/wolfcrypt/settings.h %{_includedir}/wolfssl/wolfcrypt/settings.h
%{_includedir}/wolfssl/wolfcrypt/sha.h %{_includedir}/wolfssl/wolfcrypt/sha.h
%{_includedir}/wolfssl/wolfcrypt/sha256.h %{_includedir}/wolfssl/wolfcrypt/sha256.h
@@ -305,6 +307,8 @@ mkdir -p $RPM_BUILD_ROOT/
%{_libdir}/pkgconfig/wolfssl.pc %{_libdir}/pkgconfig/wolfssl.pc
%changelog %changelog
* Thu Jul 08 2021 Jacob Barthelmeh <jacob@wolfssl.com>
- Add a missing header eccsi, sakke.
* Mon Aug 17 2020 John Safranek <john@wolfssl.com> * Mon Aug 17 2020 John Safranek <john@wolfssl.com>
- Add a missing header. - Add a missing header.
- Update for release. - Update for release.

View File

@@ -1190,7 +1190,7 @@ static int getSupported(char* in)
#endif #endif
char cannedResponse[] = { char cannedResponse[] = {
"wolfCrypt QNX CAAM driver version 4.7.1 (9)\n" "wolfCrypt QNX CAAM driver version 4.8.0\n"
"Supports:\n" "Supports:\n"
"\tAES-CMAC\n" "\tAES-CMAC\n"
"\tECC (sign, verify, ecdh, keygen)\n" "\tECC (sign, verify, ecdh, keygen)\n"

Binary file not shown.

View File

@@ -28,8 +28,8 @@
extern "C" { extern "C" {
#endif #endif
#define LIBWOLFSSL_VERSION_STRING "4.7.1" #define LIBWOLFSSL_VERSION_STRING "4.8.0"
#define LIBWOLFSSL_VERSION_HEX 0x04007001 #define LIBWOLFSSL_VERSION_HEX 0x04008000
#ifdef __cplusplus #ifdef __cplusplus
} }