Skip to content

Commit

Permalink
Merge pull request #4201 from JacobBarthelmeh/Release
Browse files Browse the repository at this point in the history
bump version for dev
  • Loading branch information
dgarske authored and JacobBarthelmeh committed Jul 23, 2021
1 parent add4a68 commit e0292fd
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 8 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ if("${CMAKE_SOURCE_DIR}" STREQUAL "${CMAKE_BINARY_DIR}")
You must delete them, or cmake will refuse to work.")
endif()

project(wolfssl VERSION 4.8.0 LANGUAGES C)
project(wolfssl VERSION 4.8.1 LANGUAGES C)

# shared library versioning
# increment if interfaces have been added, removed or changed
Expand Down
2 changes: 1 addition & 1 deletion IDE/QNX/CAAM-DRIVER/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ CC = qcc -Vgcc_nto$(PLATFORM)
CXX = qcc -lang-c++ -Vgcc_nto$(PLATFORM)
LD = $(CC)

INCLUDES += -I../../../wolfssl/wolfcrypt/port/caam/
INCLUDES += -I../../../ -I../../../wolfssl/wolfcrypt/port/caam/
CCFLAGS += -O2 -Wall

SRCS = \
Expand Down
4 changes: 2 additions & 2 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
#
AC_COPYRIGHT([Copyright (C) 2006-2020 wolfSSL Inc.])
AC_PREREQ([2.69])
AC_INIT([wolfssl],[4.8.0],[https://github.com/wolfssl/wolfssl/issues],[wolfssl],[https://www.wolfssl.com])
AC_INIT([wolfssl],[4.8.1],[https://github.com/wolfssl/wolfssl/issues],[wolfssl],[https://www.wolfssl.com])
AC_CONFIG_AUX_DIR([build-aux])

# The following sets CFLAGS to empty if unset on command line. We do not
Expand Down Expand Up @@ -36,7 +36,7 @@ LT_PREREQ([2.4.2])
LT_INIT([disable-static win32-dll])

#shared library versioning
WOLFSSL_LIBRARY_VERSION=29:0:5
WOLFSSL_LIBRARY_VERSION=29:1:5
# | | |
# +------+ | +---+
# | | |
Expand Down
6 changes: 4 additions & 2 deletions wolfcrypt/src/port/caam/caam_qnx.c
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
*/

#include "caam_driver.h"
#include "wolfssl/version.h"

#include <errno.h>
#include <stdio.h>
Expand Down Expand Up @@ -1190,8 +1191,9 @@ static int getSupported(char* in)
#endif

char cannedResponse[] = {
"wolfCrypt QNX CAAM driver version 4.8.0\n"
"Supports:\n"
"wolfCrypt QNX CAAM driver version "
LIBWOLFSSL_VERSION_STRING
"\nSupports:\n"
"\tAES-CMAC\n"
"\tECC (sign, verify, ecdh, keygen)\n"
"\tBlobs (black and red)\n"
Expand Down
Binary file modified wolfssl.rc
Binary file not shown.
4 changes: 2 additions & 2 deletions wolfssl/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@
extern "C" {
#endif

#define LIBWOLFSSL_VERSION_STRING "4.8.0"
#define LIBWOLFSSL_VERSION_HEX 0x04008000
#define LIBWOLFSSL_VERSION_STRING "4.8.1"
#define LIBWOLFSSL_VERSION_HEX 0x04008001

#ifdef __cplusplus
}
Expand Down

0 comments on commit e0292fd

Please sign in to comment.