summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNikos Mavrogiannopoulos <nmav@gnutls.org>2002-12-08 15:55:48 +0000
committerNikos Mavrogiannopoulos <nmav@gnutls.org>2002-12-08 15:55:48 +0000
commit149f4a7054e50ccfcb8e986f0be64c989d18fc25 (patch)
treea42b642c2f857f343c6917942bb96125f6464f20
parent16a9d7ff77f37067817d70cf6e294ba2e14a29ec (diff)
downloadgnutls-149f4a7054e50ccfcb8e986f0be64c989d18fc25.tar.gz
*** empty log message ***
-rw-r--r--NEWS5
-rw-r--r--configure.in8
2 files changed, 7 insertions, 6 deletions
diff --git a/NEWS b/NEWS
index 727c1b4794..dcf244416f 100644
--- a/NEWS
+++ b/NEWS
@@ -1,7 +1,8 @@
-Version 0.5.12
+Version 0.6.0
- Added "gnutls/compat4.h" header. This is included in gnutls.h
to emulate the old 0.4.x API.
- Example programs are now stored in doc/examples/
+- Several improvements and updates in the documentation.
- Added the certificate authenticated SRP cipher suites.
- gnutls_x509_extract_certificate_dn_string() was updated to return
an RFC2253 conforming string.
@@ -17,7 +18,7 @@ Version 0.5.12
- Exported the functions:
gnutls_malloc()
gnutls_free()
- which should be used in callbacks.
+ which should be used by callback functions.
- Changed the semantics of gnutls_pem_base64_encode_alloc()
and gnutls_pem_base64_decode_alloc(). In the default case
were the gnutls library is used with malloc/realloc/free,
diff --git a/configure.in b/configure.in
index d387d70c4f..9aa94b428f 100644
--- a/configure.in
+++ b/configure.in
@@ -11,8 +11,8 @@ AC_DEFINE_UNQUOTED(T_OS, "$target_os", [OS name])
dnl Gnutls Version
GNUTLS_MAJOR_VERSION=0
-GNUTLS_MINOR_VERSION=5
-GNUTLS_MICRO_VERSION=12
+GNUTLS_MINOR_VERSION=6
+GNUTLS_MICRO_VERSION=0
GNUTLS_VERSION=$GNUTLS_MAJOR_VERSION.$GNUTLS_MINOR_VERSION.$GNUTLS_MICRO_VERSION
AC_DEFINE_UNQUOTED(GNUTLS_VERSION, "$GNUTLS_VERSION", [version of gnutls])
@@ -292,10 +292,10 @@ AC_ARG_ENABLE( openpgp-authentication, [ --disable-openpgp-authentication disab
)
if test x$ac_enable_openpgp != xno; then
AC_MSG_RESULT(no)
- AM_PATH_LIBOPENCDK( 0.3.5, AC_DEFINE(HAVE_LIBOPENCDK, 1, [have libopencdk]),
+ AM_PATH_LIBOPENCDK( 0.4.0, AC_DEFINE(HAVE_LIBOPENCDK, 1, [have libopencdk]),
AC_MSG_WARN([[
***
-*** libopencdk 0.3.5 was not found. You will not be able to use OpenPGP keys with gnutls.
+*** libopencdk 0.4.0 was not found. You will not be able to use OpenPGP keys with gnutls.
]]))
else
AC_MSG_RESULT(yes)