aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Changes4
-rw-r--r--Makefile.PL2
-rw-r--r--README.markdown6
-rwxr-xr-xbin/runcrypt2
-rw-r--r--lib/Mail/Run/Crypt.pm4
-rw-r--r--t/instantiate.t2
6 files changed, 14 insertions, 6 deletions
diff --git a/Changes b/Changes
index 29a6124..5b05c25 100644
--- a/Changes
+++ b/Changes
@@ -3,6 +3,10 @@ Revision history for Perl module Mail::Run::Crypt
This project began life as a monolithic Perl script. It does much the same
thing now but it's refactored out into an application and a module.
+0.02 2017-10-14
+
+ - Lots of documentation fixes and reformatting
+
0.01 2017-10-05
- First perlmodded release, refactoring and rewriting much older code.
diff --git a/Makefile.PL b/Makefile.PL
index 49ae511..6ea39bd 100644
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -32,7 +32,7 @@ WriteMakefile(
'meta-spec' => { version => 2 },
provides => {
'Mail::Run::Crypt' => {
- version => '0.01',
+ version => '0.02',
file => 'lib/Mail/Run/Crypt.pm',
},
},
diff --git a/README.markdown b/README.markdown
index 6e6515e..913196f 100644
--- a/README.markdown
+++ b/README.markdown
@@ -4,7 +4,7 @@ Mail::Run::Crypt - Encrypt and mail output from command runs
# VERSION
-Version 0.01
+Version 0.02
# DESCRIPTION
@@ -69,6 +69,10 @@ Constructor method; accepts the following named parameters:
the key's 16-byte ("long") hexadecimal ID prefixed with `0x` is probably the
best way.
+ It is _strongly_ recommended that a dedicated key and passphrase be used for
+ signatures if this is needed. You should carefully consider the consequences of
+ a compromised key.
+
- `passphrase`
The passphrase used to decrypt the key. This is required for signing.
diff --git a/bin/runcrypt b/bin/runcrypt
index fe0f3b3..6dedd11 100755
--- a/bin/runcrypt
+++ b/bin/runcrypt
@@ -18,7 +18,7 @@ use Getopt::Long::Descriptive;
use Mail::Run::Crypt;
# Specify package version
-our $VERSION = '0.01';
+our $VERSION = '0.02';
# Name ourselves
our $SELF = 'runcrypt';
diff --git a/lib/Mail/Run/Crypt.pm b/lib/Mail/Run/Crypt.pm
index 64dd7e5..66691b1 100644
--- a/lib/Mail/Run/Crypt.pm
+++ b/lib/Mail/Run/Crypt.pm
@@ -18,7 +18,7 @@ use Mail::GnuPG;
use MIME::Entity;
# Specify package verson
-our $VERSION = '0.01';
+our $VERSION = '0.02';
# Default exit value
const our $DEFAULT_EXIT => 127;
@@ -135,7 +135,7 @@ Mail::Run::Crypt - Encrypt and mail output from command runs
=head1 VERSION
-Version 0.01
+Version 0.02
=head1 DESCRIPTION
diff --git a/t/instantiate.t b/t/instantiate.t
index eca8e48..3b1e02c 100644
--- a/t/instantiate.t
+++ b/t/instantiate.t
@@ -8,7 +8,7 @@ use Test::More tests => 1;
use Mail::Run::Crypt;
-our $VERSION = '0.01';
+our $VERSION = '0.02';
my $mrc = Mail::Run::Crypt->new( mailto => 'nobody@example.com' );