aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--NEWS9
-rw-r--r--THANKS1
-rw-r--r--VERSION2
-rw-r--r--g10/ChangeLog5
-rw-r--r--g10/keygen.c3
6 files changed, 20 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index 05ea54e5f..e721bdff5 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2001-05-29 Werner Koch <[email protected]>
+
+ Released version 1.0.6.
+
2001-05-28 Werner Koch <[email protected]>
* configure.in (BUILD_INCLUDED_LIBINTL): Set to no for W32.
diff --git a/NEWS b/NEWS
index 59bd60bad..914eda306 100644
--- a/NEWS
+++ b/NEWS
@@ -1,10 +1,13 @@
-Noteworthy changes in version ...
+Noteworthy changes in version 1.0.6 (2001-05-29)
------------------------------------------------
* Security fix for a format string bug in the tty code.
- * Fixed format string bugs in all po files. Removed Russian
- translation due to too many bugs.
+ * Fixed format string bugs in all PO files.
+
+ * Removed Russian translation due to too many bugs. The FTP
+ server has an unofficial but better translation in the contrib
+ directory.
* Fixed expire time calculation and keyserver access.
diff --git a/THANKS b/THANKS
index 882cff25e..e1dca3c02 100644
--- a/THANKS
+++ b/THANKS
@@ -12,6 +12,7 @@ Ariel T Glenn [email protected]
Bodo Moeller [email protected]
Brendan O'Dea [email protected]
Brenno de Winter [email protected]
+Brian M. Carlson [email protected]
Brian Moore [email protected]
Brian Warner [email protected]
Bryan Fullerton [email protected]
diff --git a/VERSION b/VERSION
index 567282d0f..af0b7ddbf 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-1.0.5a
+1.0.6
diff --git a/g10/ChangeLog b/g10/ChangeLog
index 646fa1c51..2b56b82a2 100644
--- a/g10/ChangeLog
+++ b/g10/ChangeLog
@@ -1,3 +1,8 @@
+2001-05-29 Werner Koch <[email protected]>
+
+ * keygen.c (generate_subkeypair): Print a warning if a subkey is
+ created on a v3 key. Suggested by Brian M. Carlson.
+
2001-05-27 Werner Koch <[email protected]>
* keyid.c (get_lsign_letter): New.
diff --git a/g10/keygen.c b/g10/keygen.c
index 00fbb301b..2639ac07f 100644
--- a/g10/keygen.c
+++ b/g10/keygen.c
@@ -1755,6 +1755,9 @@ generate_subkeypair( KBNODE pub_keyblock, KBNODE sec_keyblock )
}
}
+ if (sk->version < 4)
+ log_info (_("NOTE: creating subkeys for v3 keys "
+ "is not OpenPGP compliant\n"));
/* unprotect to get the passphrase */
switch( is_secret_key_protected( sk ) ) {