update readme and version number

This commit is contained in:
John Safranek 2012-10-10 08:55:53 -07:00
parent 6c0d473027
commit a503f13321
3 changed files with 18 additions and 5 deletions

15
README
View File

@ -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

View File

@ -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
# | | |
# +------+ | +---+
# | | |

View File

@ -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
}