From a503f1332144a66d212aaf97b0c0065482ab96e9 Mon Sep 17 00:00:00 2001 From: John Safranek Date: Wed, 10 Oct 2012 08:55:53 -0700 Subject: [PATCH] update readme and version number --- README | 15 ++++++++++++++- configure.ac | 4 ++-- cyassl/version.h | 4 ++-- 3 files changed, 18 insertions(+), 5 deletions(-) diff --git a/README b/README index a88a90ab9..b381d6bf2 100644 --- a/README +++ b/README @@ -34,7 +34,20 @@ before calling SSL_new(); Though it's not recommended. *** end Note *** -CyaSSL Release 2.3.0 (8/10/2012) +CyaSSL Release 2.4.0 (10/10/2012) + +Release 2.4.0 CyaSSL has bug fixes and a few new features including: +- DTLS reliability +- Reduced memory usage after handshake +- Updated build process + +The CyaSSL manual is available at: +http://www.yassl.com/documentation/CyaSSL-Manual.pdf. For build instructions +and comments about the new features please check the manual. + + + +*************** CyaSSL Release 2.3.0 (8/10/2012) Release 2.3.0 CyaSSL has bug fixes and a few new features including: - AES-GCM crypto and cipher suites diff --git a/configure.ac b/configure.ac index 3f22029d8..1ed8b36f8 100644 --- a/configure.ac +++ b/configure.ac @@ -6,7 +6,7 @@ # # -AC_INIT([cyassl],[2.3.1],[http://www.yassl.com]) +AC_INIT([cyassl],[2.4.0],[http://www.yassl.com]) AC_CONFIG_AUX_DIR(config) @@ -25,7 +25,7 @@ AC_CONFIG_HEADERS([config.h:config.in])dnl Keep filename to 8.3 for MS-DOS. #shared library versioning -CYASSL_LIBRARY_VERSION=3:2:0 +CYASSL_LIBRARY_VERSION=3:3:0 # | | | # +------+ | +---+ # | | | diff --git a/cyassl/version.h b/cyassl/version.h index 6c56a3923..08bcd9972 100644 --- a/cyassl/version.h +++ b/cyassl/version.h @@ -26,8 +26,8 @@ extern "C" { #endif -#define LIBCYASSL_VERSION_STRING "2.3.1" -#define LIBCYASSL_VERSION_HEX 0x02003001 +#define LIBCYASSL_VERSION_STRING "2.4.0" +#define LIBCYASSL_VERSION_HEX 0x02004000 #ifdef __cplusplus }