bump version for sniffer release

pull/160/head v3.6.9
John Safranek 2015-10-05 10:14:07 -07:00
parent b1c5f3b299
commit f06c08718c
5 changed files with 44 additions and 5 deletions

21
README
View File

@ -32,7 +32,26 @@ before calling wolfSSL_new(); Though it's not recommended.
*** end Notes ***
wolfSSL (Formerly CyaSSL) Release 3.6.8 (09/17/2015)
wolfSSL (Formerly CyaSSL) Release 3.6.9 (10/05/2015)
Release 3.6.9 of wolfSSL has bug fixes and new features including:
- New option for the sniffer where it will try to pick up decoding after a
sequence number acknowldgement fault. Also includes some additional stats.
- AES-GCM/CCM fixes.
- FreeRTOS support updates.
- VXWorks support updates.
- Added the IDEA cipher and support in wolfSSL.
- Update wolfSSL website CA.
- CFLAGS is usable when configuring source.
- No high level security fixes that requires an update though we always
recommend updating to the latest
See INSTALL file for build instructions.
More info can be found on-line at //http://wolfssl.com/yaSSL/Docs.html
********* wolfSSL (Formerly CyaSSL) Release 3.6.8 (09/17/2015)
Release 3.6.8 of wolfSSL fixes two high severity vulnerabilities. It also
includes bug fixes and new features including:

View File

@ -36,6 +36,26 @@ before calling wolfSSL_new(); Though it's not recommended.
```
# wolfSSL (Formerly CyaSSL) Release 3.6.9 (10/05/2015)
##Release 3.6.9 of wolfSSL has bug fixes and new features including:
- New option for the sniffer where it will try to pick up decoding after a
sequence number acknowldgement fault. Also includes some additional stats.
- AES-GCM/CCM fixes.
- FreeRTOS support updates.
- VXWorks support updates.
- Added the IDEA cipher and support in wolfSSL.
- Update wolfSSL website CA.
- CFLAGS is usable when configuring source.
- No high level security fixes that requires an update though we always
recommend updating to the latest
See INSTALL file for build instructions.
More info can be found on-line at //http://wolfssl.com/yaSSL/Docs.html
#wolfSSL (Formerly CyaSSL) Release 3.6.8 (09/17/2015)
##Release 3.6.8 of wolfSSL fixes two high severity vulnerabilities.

View File

@ -6,7 +6,7 @@
#
#
AC_INIT([wolfssl],[3.6.8],[https://github.com/wolfssl/wolfssl/issues],[wolfssl],[http://www.wolfssl.com])
AC_INIT([wolfssl],[3.6.9],[https://github.com/wolfssl/wolfssl/issues],[wolfssl],[http://www.wolfssl.com])
AC_CONFIG_AUX_DIR([build-aux])

View File

@ -5,6 +5,6 @@ includedir=${prefix}/include
Name: wolfssl
Description: wolfssl C library.
Version: 3.6.8
Version: 3.6.9
Libs: -L${libdir} -lwolfssl
Cflags: -I${includedir}

View File

@ -26,8 +26,8 @@
extern "C" {
#endif
#define LIBWOLFSSL_VERSION_STRING "3.6.8"
#define LIBWOLFSSL_VERSION_HEX 0x03006008
#define LIBWOLFSSL_VERSION_STRING "3.6.9"
#define LIBWOLFSSL_VERSION_HEX 0x03006009
#ifdef __cplusplus
}