summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJesse Vincent <jesse@bestpractical.com>2007-04-20 16:43:30 +0000
committerJesse Vincent <jesse@bestpractical.com>2007-04-20 16:43:30 +0000
commit06f0bab8cd7ed1d55be3ae4ccde529dccea0d524 (patch)
tree4c20ae5911c48aca6f312bb1148a8e0214e737d2
parent01e700b9eab22b9b6211d49aab091a692921429c (diff)
Fixes to support 'tru' record types. (See Changelog)
-rw-r--r--ChangeLog6
-rw-r--r--lib/GnuPG/Interface.pm4
2 files changed, 8 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 539e7cf..6d03da5 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+0.35 Fri Apr 20 12:33:53 EDT 2007 - Jesse Vincent <jesse@bestpractical.com>
+
+ * Removed test key expiry dates. (Fixes http://rt.cpan.org/Ticket/Display.html?id=17618)
+ * Applied secret key output patch for modern GPG from http://rt.cpan.org/Ticket/Display.html?id=17619
+ * Applied patch to support tru record types from (http://search.cpan.org/src/JRED/Mail-GPG-1.0.6/patches/)
+
2002-09-26 15:47 ftobin
* THANKS: add Walter Stanish <walter@pratyeka.org> for a docfix
diff --git a/lib/GnuPG/Interface.pm b/lib/GnuPG/Interface.pm
index 852a02e..e72c465 100644
--- a/lib/GnuPG/Interface.pm
+++ b/lib/GnuPG/Interface.pm
@@ -28,7 +28,7 @@ use IO::Handle;
use GnuPG::Options;
use GnuPG::Handles;
-$VERSION = '0.34';
+$VERSION = '0.35';
use Class::MethodMaker
get_set => [ qw( call passphrase ) ],
@@ -543,7 +543,7 @@ sub get_keys
$current_key->push_subkeys( $current_signed_item );
}
- else
+ elsif ( $record_type ne 'tru' )
{
warn "unknown record type $record_type";
}