diff options
author | Werner Koch <wk@gnupg.org> | 2008-04-25 16:19:16 +0000 |
---|---|---|
committer | Werner Koch <wk@gnupg.org> | 2008-04-25 16:19:16 +0000 |
commit | 7a991a6d421b4680dcf9ed07de340b3f3b5f0af8 (patch) | |
tree | fac4a20ec2757934df3e46f818780395ba9a1dba | |
parent | 1037e1bb6b6304863f01189edd259c3c51d2e460 (diff) | |
download | libgcrypt-7a991a6d421b4680dcf9ed07de340b3f3b5f0af8.tar.gz |
Preparing the releaselibgcrypt-1.4.1
-rw-r--r-- | AUTHORS | 3 | ||||
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | NEWS | 4 | ||||
-rw-r--r-- | README | 5 | ||||
-rw-r--r-- | cipher/ChangeLog | 2 | ||||
-rw-r--r-- | configure.ac | 9 |
6 files changed, 18 insertions, 11 deletions
@@ -2,6 +2,7 @@ Library: Libgcrypt Maintainer: Werner Koch <wk@gnupg.org> Bug reports: <bug-libgcrypt@gnupg.org> or http://bugs.gnupg.org Security related bug reports: <security@gnupg.org> +License: LGPLv2.1+ Libgcrypt used to be part of GnuPG but has been taken out into its own package on 2000-12-21. @@ -110,7 +111,7 @@ original NTT provided GPL source. Copyright 1998, 1999, 2000, 2001, 2002, 2003, - 2006, 2007 Free Software Foundation, Inc. + 2006, 2007, 2008 Free Software Foundation, Inc. This file is free software; as a special exception the author gives unlimited permission to copy and/or distribute it, with or without @@ -1,3 +1,9 @@ +2008-04-25 Werner Koch <wk@g10code.com> + + Release 1.4.1. + + * configure.ac: Bump LT version to C15/A4/R4. + 2008-04-22 Werner Koch <wk@g10code.com> * configure.ac: Set version to 1.4.1rc1. @@ -1,4 +1,4 @@ -Noteworthy changes in version 1.4.1 (unreleased) +Noteworthy changes in version 1.4.1 (2008-04-25) ------------------------------------------------ * Fixed a bug introduced by 1.3.1 which led to the comsumption of far @@ -512,7 +512,7 @@ Noteworthy changes in version 1.1.3 (2001-05-31) into into libgcrypt and GnuPG. -Copyright 2001, 2002, 2003, 2004, 2007 Free Software Foundation, Inc. +Copyright 2001, 2002, 2003, 2004, 2007, 2008 Free Software Foundation, Inc. This file is free software; as a special exception the author gives unlimited permission to copy and/or distribute it, with or without @@ -1,8 +1,9 @@ libgcrypt - The GNU crypto library ------------------------------------ - Version 1.4.0 + Version 1.4.1 - Copyright 2000, 2002, 2003, 2004, 2007 Free Software Foundation, Inc. + Copyright 2000, 2002, 2003, 2004, 2007, + 2008 Free Software Foundation, Inc. This file is free software; as a special exception the author gives unlimited permission to copy and/or distribute it, with or without diff --git a/cipher/ChangeLog b/cipher/ChangeLog index 5cceb4e1..7aefcfa6 100644 --- a/cipher/ChangeLog +++ b/cipher/ChangeLog @@ -6,7 +6,7 @@ 2008-04-18 Werner Koch <wk@g10code.com> * sha1.c (transform_aligned): Remove. That is will obviosuly not - work becuase we need a scratch working area and our internal API + work because we need a scratch working area and our internal API does not allow to modify the buffers. * rijndael.c: Factor tables out to .. diff --git a/configure.ac b/configure.ac index 27bbd01e..739e0fc4 100644 --- a/configure.ac +++ b/configure.ac @@ -15,9 +15,8 @@ # GNU Lesser General Public License for more details. # # You should have received a copy of the GNU Lesser General Public -# License along with this program; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA -# +# License along with this program; if not, see <http://www.gnu.org/licenses/>. + # (Process this file with autoconf to produce a configure script.) AC_REVISION($Revision$) AC_PREREQ(2.60) @@ -27,7 +26,7 @@ min_automake_version="1.10" # Remember to change the version number immediately *after* a release. # Set my_issvn to "yes" for non-released code. Remember to run an # "svn up" and "autogen.sh" right before creating a distribution. -m4_define([my_version], [1.4.1rc1]) +m4_define([my_version], [1.4.1]) m4_define([my_issvn], [no]) m4_define([svn_revision], m4_esyscmd([echo -n $( (svn info 2>/dev/null \ @@ -41,7 +40,7 @@ AC_INIT([libgcrypt], # (No interfaces changed: REVISION++) LIBGCRYPT_LT_CURRENT=15 LIBGCRYPT_LT_AGE=4 -LIBGCRYPT_LT_REVISION=3 +LIBGCRYPT_LT_REVISION=4 # If the API is changed in an incompatible way: increment the next counter. |