aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Changes6
-rw-r--r--Makefile.PL2
-rw-r--r--README.markdown2
-rwxr-xr-xbin/runcrypt2
-rw-r--r--lib/Mail/Run/Crypt.pm4
-rw-r--r--t/encrypt-sign.t2
-rw-r--r--t/encrypt.t2
-rw-r--r--t/require-key-data.t2
-rw-r--r--t/require-mailto.t2
9 files changed, 15 insertions, 9 deletions
diff --git a/Changes b/Changes
index d91c1b0..b2d3c4d 100644
--- a/Changes
+++ b/Changes
@@ -3,6 +3,12 @@ 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.07 2017-10-18
+
+ - Expand test suite a little more to test that encrypt-and-sign mode
+ objects are created correctly, and that both key ID and passphrase
+ have to be provided for the object to build.
+
0.06 2017-10-18
- Expand test suite's test of constructed object's state. Much more
diff --git a/Makefile.PL b/Makefile.PL
index bd7da21..da53d4f 100644
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -31,7 +31,7 @@ WriteMakefile(
'meta-spec' => { version => 2 },
provides => {
'Mail::Run::Crypt' => {
- version => '0.06',
+ version => '0.07',
file => 'lib/Mail/Run/Crypt.pm',
},
},
diff --git a/README.markdown b/README.markdown
index eba1ce8..6fe1ae1 100644
--- a/README.markdown
+++ b/README.markdown
@@ -4,7 +4,7 @@ Mail::Run::Crypt - Encrypt and mail output from command runs
# VERSION
-Version 0.06
+Version 0.07
# DESCRIPTION
diff --git a/bin/runcrypt b/bin/runcrypt
index d268385..dd02efa 100755
--- a/bin/runcrypt
+++ b/bin/runcrypt
@@ -17,7 +17,7 @@ use Getopt::Long::Descriptive;
use Mail::Run::Crypt;
# Specify package version
-our $VERSION = '0.06';
+our $VERSION = '0.07';
# Name ourselves
our $SELF = 'runcrypt';
diff --git a/lib/Mail/Run/Crypt.pm b/lib/Mail/Run/Crypt.pm
index 5669f1d..bd99043 100644
--- a/lib/Mail/Run/Crypt.pm
+++ b/lib/Mail/Run/Crypt.pm
@@ -16,7 +16,7 @@ use Mail::GnuPG;
use MIME::Entity;
# Specify package verson
-our $VERSION = '0.06';
+our $VERSION = '0.07';
# Default exit value
our $DEFAULT_EXIT = 127; ## no critic (ProhibitMagicNumbers)
@@ -138,7 +138,7 @@ Mail::Run::Crypt - Encrypt and mail output from command runs
=head1 VERSION
-Version 0.06
+Version 0.07
=head1 DESCRIPTION
diff --git a/t/encrypt-sign.t b/t/encrypt-sign.t
index f7e3ab2..3688369 100644
--- a/t/encrypt-sign.t
+++ b/t/encrypt-sign.t
@@ -8,7 +8,7 @@ use Test::More tests => 10;
use Mail::Run::Crypt;
-our $VERSION = '0.06';
+our $VERSION = '0.07';
my %opts = (
mailto => 'nobody@example.com',
diff --git a/t/encrypt.t b/t/encrypt.t
index 3caf8ca..691d5aa 100644
--- a/t/encrypt.t
+++ b/t/encrypt.t
@@ -8,7 +8,7 @@ use Test::More tests => 10;
use Mail::Run::Crypt;
-our $VERSION = '0.06';
+our $VERSION = '0.07';
my %opts = ( mailto => 'nobody@example.com' );
my $mrc = Mail::Run::Crypt->new(%opts);
diff --git a/t/require-key-data.t b/t/require-key-data.t
index aca5531..9de0d46 100644
--- a/t/require-key-data.t
+++ b/t/require-key-data.t
@@ -9,7 +9,7 @@ use Test::More tests => 4;
use Mail::Run::Crypt;
-our $VERSION = '0.06';
+our $VERSION = '0.07';
{
my $mrc;
diff --git a/t/require-mailto.t b/t/require-mailto.t
index b894408..9611d7a 100644
--- a/t/require-mailto.t
+++ b/t/require-mailto.t
@@ -9,7 +9,7 @@ use Test::More tests => 2;
use Mail::Run::Crypt;
-our $VERSION = '0.06';
+our $VERSION = '0.07';
my $mrc;
my $error;