diff options
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | NEWS | 6 | ||||
-rw-r--r-- | README | 10 | ||||
-rw-r--r-- | TODO | 7 | ||||
-rw-r--r-- | configure.ac | 8 |
5 files changed, 16 insertions, 21 deletions
@@ -1,3 +1,9 @@ +2002-05-21 Werner Koch <wk@gnupg.org> + + Release 1.1.7. + + * configure.ac: Set LT version to 4/3/0. + 2002-05-17 Werner Koch <wk@gnupg.org> * configure.ac: Removed all the dynmaic loading stuff. @@ -1,4 +1,4 @@ -Noteworthy changes in version (current cvs) +Noteworthy changes in version 1.1.7 (2002-05-21) ------------------------------------------------ * Libgcrypt is now distributed under the terms of the GNU Lesser @@ -8,8 +8,9 @@ Noteworthy changes in version (current cvs) * Libgcrypt should now be thread safe after the initialization. gcry_control (GCRYCRL_INITIALIZATION_FINISHED,NULL,0) should have - be called before creating additional threads. + been called before creating additional threads. + * Interface changes relative to the 1.1.6 release: ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ GCRYCTL_DISABLE_INTERNAL_LOCKING NEW GCRYCTL_DISABLE_SECMEM NEW @@ -19,6 +20,7 @@ GCRYCTL_ANY_INITIALIZATION_P NEW gcry_strdup NEW gcry_sexp_create NEW gcry_sexp_new NEW +gcry_set_progress_handler NEW ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Noteworthy changes in version 1.1.6 (2002-02-07) @@ -75,13 +75,3 @@ less to protect the freedom of the users of the code that it covers. See http://www.gnu.org/philosophy/why-not-lgpl.html for more explanation. - - - - - - - - - - @@ -6,9 +6,6 @@ * udiv-qrnbd.o should get build as *.lo [HPUX] -* Define a function to be used as a constructor to set up things in a - MT safe way. There is already a hook for this. - * Allow operation using RSA keys consisting of the OpenSSL list of - paramemters and allow for a third form where the private Exponent - is not given (saves space) + parameters and allow for a third form where the private Exponent + is not given (saves space). diff --git a/configure.ac b/configure.ac index 01d7627b..1326c8c0 100644 --- a/configure.ac +++ b/configure.ac @@ -25,10 +25,10 @@ AC_PREREQ(2.53) # (Interfaces removed: CURRENT++, AGE=0, REVISION=0) # (Interfaces added: CURRENT++, AGE++, REVISION=0) # (No interfaces changed: REVISION++) -AC_INIT(libgcrypt,1.1.7-cvs) -LIBGCRYPT_LT_CURRENT=3 -LIBGCRYPT_LT_AGE=2 -LIBGCRYPT_LT_REVISION=1 +AC_INIT(libgcrypt,1.1.7) +LIBGCRYPT_LT_CURRENT=4 +LIBGCRYPT_LT_AGE=3 +LIBGCRYPT_LT_REVISION=0 #----------------------- PACKAGE=$PACKAGE_NAME |