forked from wolfSSL/wolfssl
Merge pull request #1591 from ejohnstown/release-3.15.0
Release v3.15.0 Preparation
This commit is contained in:
@@ -84,6 +84,7 @@ EXTRA_DIST+= wolfssl64.sln
|
|||||||
EXTRA_DIST+= valgrind-error.sh
|
EXTRA_DIST+= valgrind-error.sh
|
||||||
EXTRA_DIST+= gencertbuf.pl
|
EXTRA_DIST+= gencertbuf.pl
|
||||||
EXTRA_DIST+= README.md
|
EXTRA_DIST+= README.md
|
||||||
|
EXTRA_DIST+= NEWS.md
|
||||||
EXTRA_DIST+= LICENSING
|
EXTRA_DIST+= LICENSING
|
||||||
EXTRA_DIST+= INSTALL
|
EXTRA_DIST+= INSTALL
|
||||||
EXTRA_DIST+= IPP
|
EXTRA_DIST+= IPP
|
||||||
|
0
certs/ca-ecc-cert.der
Executable file → Normal file
0
certs/ca-ecc-cert.der
Executable file → Normal file
0
certs/ca-ecc-key.der
Executable file → Normal file
0
certs/ca-ecc-key.der
Executable file → Normal file
0
certs/ca-ecc-key.pem
Executable file → Normal file
0
certs/ca-ecc-key.pem
Executable file → Normal file
0
certs/ca-ecc384-cert.der
Executable file → Normal file
0
certs/ca-ecc384-cert.der
Executable file → Normal file
0
certs/ca-ecc384-key.der
Executable file → Normal file
0
certs/ca-ecc384-key.der
Executable file → Normal file
0
certs/ca-ecc384-key.pem
Executable file → Normal file
0
certs/ca-ecc384-key.pem
Executable file → Normal file
0
certs/include.am
Executable file → Normal file
0
certs/include.am
Executable file → Normal file
0
certs/server-ecc.der
Executable file → Normal file
0
certs/server-ecc.der
Executable file → Normal file
0
certs/test/server-cert-ecc-badsig.der
Executable file → Normal file
0
certs/test/server-cert-ecc-badsig.der
Executable file → Normal file
26
configure.ac
26
configure.ac
@@ -6,7 +6,7 @@
|
|||||||
#
|
#
|
||||||
#
|
#
|
||||||
AC_COPYRIGHT([Copyright (C) 2006-2018 wolfSSL Inc.])
|
AC_COPYRIGHT([Copyright (C) 2006-2018 wolfSSL Inc.])
|
||||||
AC_INIT([wolfssl],[3.14.0],[https://github.com/wolfssl/wolfssl/issues],[wolfssl],[http://www.wolfssl.com])
|
AC_INIT([wolfssl],[3.15.0],[https://github.com/wolfssl/wolfssl/issues],[wolfssl],[https://www.wolfssl.com])
|
||||||
|
|
||||||
AC_CONFIG_AUX_DIR([build-aux])
|
AC_CONFIG_AUX_DIR([build-aux])
|
||||||
|
|
||||||
@@ -41,18 +41,18 @@ AC_CONFIG_MACRO_DIR([m4])
|
|||||||
AC_CONFIG_HEADERS([config.h:config.in])dnl Keep filename to 8.3 for MS-DOS.
|
AC_CONFIG_HEADERS([config.h:config.in])dnl Keep filename to 8.3 for MS-DOS.
|
||||||
|
|
||||||
#shared library versioning
|
#shared library versioning
|
||||||
WOLFSSL_LIBRARY_VERSION=16:0:0
|
WOLFSSL_LIBRARY_VERSION=17:0:0
|
||||||
# | | |
|
# | | |
|
||||||
# +------+ | +---+
|
# +------+ | +---+
|
||||||
# | | |
|
# | | |
|
||||||
# current:revision:age
|
# current:revision:age
|
||||||
# | | |
|
# | | |
|
||||||
# | | +- increment if interfaces have been added
|
# | | +- increment if interfaces have been added
|
||||||
# | | set to zero if interfaces have been removed
|
# | | set to zero if interfaces have been removed
|
||||||
# | | or changed
|
# | | or changed
|
||||||
# | +- increment if source code has changed
|
# | +- increment if source code has changed
|
||||||
# | set to zero if current is incremented
|
# | set to zero if current is incremented
|
||||||
# +- increment if interfaces have been added, removed or changed
|
# +- increment if interfaces have been added, removed or changed
|
||||||
AC_SUBST([WOLFSSL_LIBRARY_VERSION])
|
AC_SUBST([WOLFSSL_LIBRARY_VERSION])
|
||||||
|
|
||||||
# capture user C_EXTRA_FLAGS from ./configure line, CFLAGS may hold -g -O2 even
|
# capture user C_EXTRA_FLAGS from ./configure line, CFLAGS may hold -g -O2 even
|
||||||
|
@@ -73,8 +73,8 @@ mkdir -p $RPM_BUILD_ROOT/
|
|||||||
%{_docdir}/wolfssl/README.txt
|
%{_docdir}/wolfssl/README.txt
|
||||||
%{_libdir}/libwolfssl.la
|
%{_libdir}/libwolfssl.la
|
||||||
%{_libdir}/libwolfssl.so
|
%{_libdir}/libwolfssl.so
|
||||||
%{_libdir}/libwolfssl.so.16
|
%{_libdir}/libwolfssl.so.17
|
||||||
%{_libdir}/libwolfssl.so.16.0.0
|
%{_libdir}/libwolfssl.so.17.0.0
|
||||||
|
|
||||||
%files devel
|
%files devel
|
||||||
%defattr(-,root,root,-)
|
%defattr(-,root,root,-)
|
||||||
@@ -287,6 +287,8 @@ mkdir -p $RPM_BUILD_ROOT/
|
|||||||
%{_libdir}/pkgconfig/wolfssl.pc
|
%{_libdir}/pkgconfig/wolfssl.pc
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Thu May 31 2018 John Safranek <john@wolfssl.com>
|
||||||
|
- Update the version number on the library SO file.
|
||||||
* Fri Mar 02 2018 Jacob Barthelmeh <jacob@wolfssl.com>
|
* Fri Mar 02 2018 Jacob Barthelmeh <jacob@wolfssl.com>
|
||||||
- Added headder files fips.h, buffer.h, objects.h, rc4.h and example tls_bench.c
|
- Added headder files fips.h, buffer.h, objects.h, rc4.h and example tls_bench.c
|
||||||
* Fri Sep 08 2017 Jacob Barthelmeh <jacob@wolfssl.com>
|
* Fri Sep 08 2017 Jacob Barthelmeh <jacob@wolfssl.com>
|
||||||
|
0
src/tls13.c
Executable file → Normal file
0
src/tls13.c
Executable file → Normal file
0
wolfcrypt/src/asn.c
Executable file → Normal file
0
wolfcrypt/src/asn.c
Executable file → Normal file
0
wolfcrypt/src/ecc.c
Executable file → Normal file
0
wolfcrypt/src/ecc.c
Executable file → Normal file
0
wolfcrypt/src/pwdbased.c
Executable file → Normal file
0
wolfcrypt/src/pwdbased.c
Executable file → Normal file
@@ -28,8 +28,8 @@
|
|||||||
extern "C" {
|
extern "C" {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#define LIBWOLFSSL_VERSION_STRING "3.14.0"
|
#define LIBWOLFSSL_VERSION_STRING "3.15.0"
|
||||||
#define LIBWOLFSSL_VERSION_HEX 0x03014000
|
#define LIBWOLFSSL_VERSION_HEX 0x03015000
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
}
|
}
|
||||||
|
0
wolfssl/wolfcrypt/types.h
Executable file → Normal file
0
wolfssl/wolfcrypt/types.h
Executable file → Normal file
Reference in New Issue
Block a user