summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWerner Koch <wk@gnupg.org>2002-12-21 15:54:49 +0000
committerWerner Koch <wk@gnupg.org>2002-12-21 15:54:49 +0000
commitaa766058807feafd98071bcde93975b33d0d4f1d (patch)
tree941ce1c3aea93009b23d7a15c92977876e18e879
parent13ac21bc7a2c615c700b6d185a7a4922b242c163 (diff)
downloadlibgcrypt-aa766058807feafd98071bcde93975b33d0d4f1d.tar.gz
* configure.ac (LIBGCRYPT_LT_CURRENT: Bumbed to 6/5/0 due to a new
interface
-rw-r--r--AUTHORS15
-rw-r--r--ChangeLog7
-rw-r--r--NEWS11
-rw-r--r--TODO7
-rw-r--r--configure.ac8
5 files changed, 35 insertions, 13 deletions
diff --git a/AUTHORS b/AUTHORS
index 94f4916e..4681d61d 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -1,4 +1,7 @@
-Maintainer: wk@g10code.com
+Library: Libgcrypt
+Maintainer: Werner Koch <wk@g10code.com>
+Bug reports: <bug-libgcrypt@gnupg.org>
+Security related bug reports: <security@gnupg.org>
Libgcrypt used to be part of GnuPG but has been take out into its own
package on 2000-12-21.
@@ -40,27 +43,25 @@ g10/free-packet.c, g10/mdfilter.c, g10/plaintext.c, util/iobuf.c)
rguyom@mail.dotcom.fr
ANY g10 Code GmbH 2001-06-07
-Code marked with ChangeLog entries of Werner Koch or Marcus Brinkmann.
+Code marked with ChangeLog entries of g10 Code employees.
LIBGCRYPT Timo Schulz 2001-08-31
Assigns past and future changes.
twoaday@freakmail.de
LIBGCRYPT Simon Josefsson 2002-10-25
-Assigns past and future changes to FSF.
+Assigns past and future changes to FSF (cipher/md4.c, CTS flag)
simon@josefsson.org
-
-
More credits
============
The ATH implementation (src/ath*) has been taken from GPGME and
-relicensed to the GPL by the copyrighr holder of GPGME (g10 Code
-GmbH) it is now considered to be a part of Libgcrypt.
+relicensed to the LGPL by the copyright holder of GPGME (g10 Code
+GmbH); it is now considered to be a part of Libgcrypt.
Most of the stuff in mpi has been taken from the GMP library by
Torbjorn Granlund <tege@noisy.tmg.se>.
diff --git a/ChangeLog b/ChangeLog
index 660cadf7..4f73a0a3 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2002-12-21 Werner Koch <wk@gnupg.org>
+
+ Released 1.1.11.
+
+ * configure.ac (LIBGCRYPT_LT_CURRENT: Bumbed to 6/5/0 due to a new
+ interface
+
2002-12-19 Werner Koch <wk@gnupg.org>
* configure.ac (have_pthread): Check for pthreads in libc.
diff --git a/NEWS b/NEWS
index 4bbbb53c..c281d511 100644
--- a/NEWS
+++ b/NEWS
@@ -1,12 +1,19 @@
-Noteworthy changes in version 1.1.11 (unreleased)
+Noteworthy changes in version 1.1.11 (2002-12-21)
-------------------------------------------------
- * Don't export internal symbols anymore (only on GNU systems)
+ * Don't export internal symbols anymore (currently only for GNU systems)
* New algorithm: MD4
+ * Implemented ciphertext stealing.
+
* Smaller bugs fixes and a few new OIDs.
+ * Interface changes relative to the 1.1.8 release:
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+gcry_cipher_cts NEW
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+
Noteworthy changes in version 1.1.10 (2002-09-20)
-------------------------------------------------
diff --git a/TODO b/TODO
index 6eb6d9d8..cac3c88b 100644
--- a/TODO
+++ b/TODO
@@ -15,3 +15,10 @@
* Add a warning to the manual, to check that libgcrypt actually has
been compiled with thread support wehen used by a trhersded
application.
+
+* write an autoconf test to check whether the linker supports a
+ version script.
+
+* Make use of the forthcoming visibility attribute.
+
+* Add attributes to the MPI functions.
diff --git a/configure.ac b/configure.ac
index 36fb8842..3d6a4183 100644
--- a/configure.ac
+++ b/configure.ac
@@ -22,14 +22,14 @@ AC_REVISION($Revision$)dnl
AC_PREREQ(2.52)
# Version number: Remember to change it immediately *after* a release.
-AC_INIT(libgcrypt,1.1.11)
+AC_INIT(libgcrypt, 1.1.11, bug-libgcrypt@gnupg.org)
# LT Version numbers, remember to change them just *before* a release.
# (Interfaces removed: CURRENT++, AGE=0, REVISION=0)
# (Interfaces added: CURRENT++, AGE++, REVISION=0)
# (No interfaces changed: REVISION++)
-LIBGCRYPT_LT_CURRENT=5
-LIBGCRYPT_LT_AGE=4
-LIBGCRYPT_LT_REVISION=2
+LIBGCRYPT_LT_CURRENT=6
+LIBGCRYPT_LT_AGE=5
+LIBGCRYPT_LT_REVISION=0
#-----------------------
PACKAGE=$PACKAGE_NAME