Preparing the 2.0.3 release

This commit is contained in:
Werner Koch 2007-03-08 14:16:15 +00:00
parent f7c1efc880
commit e0bbbb8a7f
32 changed files with 17285 additions and 16510 deletions

View File

@ -1,3 +1,7 @@
2007-03-08 Werner Koch <wk@g10code.com>
Released 2.0.3.
2007-01-31 Werner Koch <wk@g10code.com>
Released 2.0.2.

4
NEWS
View File

@ -1,4 +1,4 @@
Noteworthy changes in version 2.0.3
Noteworthy changes in version 2.0.3 (2007-03-08)
------------------------------------------------
* By default, do not allow processing multiple plaintexts in a single
@ -10,7 +10,7 @@ Noteworthy changes in version 2.0.3
* New --verify-option show-primary-uid-only.
* gpgconf may now read a global configuration file to select which
* gpgconf may now reads a global configuration file to select which
options are changeable by a frontend. The new applygnupgdefaults
tool may be used by an admin to set default options for all users.

2
README
View File

@ -3,7 +3,7 @@
Version 2.0
Copyright 1998, 1999, 2000, 2001, 2002, 2003, 2004,
2005, 2006 Free Software Foundation, Inc.
2005, 2006,2007 Free Software Foundation, Inc.
INTRODUCTION

View File

@ -1,6 +1,6 @@
# configure.ac - for GnuPG 1.9
# Copyright (C) 1998, 1999, 2000, 2001, 2002,
# 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
# Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
# 2006, 2007 Free Software Foundation, Inc.
#
# This file is part of GnuPG.
#
@ -26,8 +26,8 @@ min_automake_version="1.9.3"
# 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], [2.0.2])
m4_define([my_issvn], [no])
m4_define([my_version], [2.0.3])
m4_define([my_issvn], [yes])
m4_define([svn_revision], m4_esyscmd([echo -n $( (svn info 2>/dev/null \

1130
po/be.po

File diff suppressed because it is too large Load Diff

1129
po/ca.po

File diff suppressed because it is too large Load Diff

1131
po/cs.po

File diff suppressed because it is too large Load Diff

1130
po/da.po

File diff suppressed because it is too large Load Diff

1129
po/de.po

File diff suppressed because it is too large Load Diff

1130
po/el.po

File diff suppressed because it is too large Load Diff

1130
po/eo.po

File diff suppressed because it is too large Load Diff

1130
po/es.po

File diff suppressed because it is too large Load Diff

1130
po/et.po

File diff suppressed because it is too large Load Diff

1130
po/fi.po

File diff suppressed because it is too large Load Diff

1130
po/fr.po

File diff suppressed because it is too large Load Diff

1130
po/gl.po

File diff suppressed because it is too large Load Diff

1130
po/hu.po

File diff suppressed because it is too large Load Diff

1130
po/id.po

File diff suppressed because it is too large Load Diff

1130
po/it.po

File diff suppressed because it is too large Load Diff

1130
po/ja.po

File diff suppressed because it is too large Load Diff

1129
po/nb.po

File diff suppressed because it is too large Load Diff

1130
po/pl.po

File diff suppressed because it is too large Load Diff

1130
po/pt.po

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

1130
po/ro.po

File diff suppressed because it is too large Load Diff

1132
po/ru.po

File diff suppressed because it is too large Load Diff

1130
po/sk.po

File diff suppressed because it is too large Load Diff

4385
po/sv.po

File diff suppressed because it is too large Load Diff

1136
po/tr.po

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -148,7 +148,7 @@ prepare_decryption (ctrl_t ctrl, const char *hexkeygrip, const char *desc,
decrypt it and store it inoutbuf which has a maximum size of
maxoutlen. The valid bytes in outbuf should be return in outlen.
Due to different buffer sizes or different length of input and
output, it may happen that fewer bytes are process or fewer bytes
output, it may happen that fewer bytes are processed or fewer bytes
are written. */
static gpg_error_t
decrypt_filter (void *arg,
@ -165,7 +165,7 @@ decrypt_filter (void *arg,
if (maxoutlen < 2*parm->blklen)
return gpg_error (GPG_ERR_BUG);
/* make some space becuase we will later need an extra block at the end */
/* Make some space because we will later need an extra block at the end. */
maxoutlen -= blklen;
if (parm->helpblocklen)
@ -298,7 +298,7 @@ gpgsm_decrypt (ctrl_t ctrl, int in_fd, FILE *out_fp)
goto leave;
}
/* parser loop */
/* Parser loop. */
do
{
rc = ksba_cms_parse (cms, &stopreason);