diff options
author | Tom Ryder <tom@sanctum.geek.nz> | 2017-10-23 16:51:34 +1300 |
---|---|---|
committer | Tom Ryder <tom@sanctum.geek.nz> | 2017-10-23 16:51:34 +1300 |
commit | 6bd93fa5914048c722c1446e0fb3f0882270f171 (patch) | |
tree | 3ca393d9a16bf14af8b20c459ba7edf254248ea7 | |
parent | Test that specifying encryption explicitly works (diff) | |
download | Mail-Run-Crypt-6bd93fa5914048c722c1446e0fb3f0882270f171.tar.gz (sig) Mail-Run-Crypt-6bd93fa5914048c722c1446e0fb3f0882270f171.zip |
Bump version numberv0.08
-rw-r--r-- | Changes | 4 | ||||
-rw-r--r-- | Makefile.PL | 2 | ||||
-rw-r--r-- | README.markdown | 2 | ||||
-rwxr-xr-x | bin/runcrypt | 2 | ||||
-rw-r--r-- | lib/Mail/Run/Crypt.pm | 4 | ||||
-rw-r--r-- | t/custom-name.t | 2 | ||||
-rw-r--r-- | t/encrypt-explicit.t | 2 | ||||
-rw-r--r-- | t/encrypt-sign.t | 2 | ||||
-rw-r--r-- | t/encrypt.t | 2 | ||||
-rw-r--r-- | t/require-key-data.t | 2 | ||||
-rw-r--r-- | t/require-mailto.t | 2 |
11 files changed, 15 insertions, 11 deletions
@@ -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.08 2017-10-23 + + - Some more tests, but still no proper mockup behaviour. + 0.07 2017-10-18 - Expand test suite a little more to test that encrypt-and-sign mode diff --git a/Makefile.PL b/Makefile.PL index da53d4f..1a8e325 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -31,7 +31,7 @@ WriteMakefile( 'meta-spec' => { version => 2 }, provides => { 'Mail::Run::Crypt' => { - version => '0.07', + version => '0.08', file => 'lib/Mail/Run/Crypt.pm', }, }, diff --git a/README.markdown b/README.markdown index 6fe1ae1..2553ba2 100644 --- a/README.markdown +++ b/README.markdown @@ -4,7 +4,7 @@ Mail::Run::Crypt - Encrypt and mail output from command runs # VERSION -Version 0.07 +Version 0.08 # DESCRIPTION diff --git a/bin/runcrypt b/bin/runcrypt index dd02efa..159bac5 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.07'; +our $VERSION = '0.08'; # Name ourselves our $SELF = 'runcrypt'; diff --git a/lib/Mail/Run/Crypt.pm b/lib/Mail/Run/Crypt.pm index 2c33684..1855e91 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.07'; +our $VERSION = '0.08'; # 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.07 +Version 0.08 =head1 DESCRIPTION diff --git a/t/custom-name.t b/t/custom-name.t index 9f47d10..865c26d 100644 --- a/t/custom-name.t +++ b/t/custom-name.t @@ -8,7 +8,7 @@ use Test::More tests => 2; use Mail::Run::Crypt; -our $VERSION = '0.07'; +our $VERSION = '0.08'; my $name = 'mrc_custom'; my %opts = ( diff --git a/t/encrypt-explicit.t b/t/encrypt-explicit.t index 9db5556..27b2e4d 100644 --- a/t/encrypt-explicit.t +++ b/t/encrypt-explicit.t @@ -8,7 +8,7 @@ use Test::More tests => 2; use Mail::Run::Crypt; -our $VERSION = '0.07'; +our $VERSION = '0.08'; my %opts = ( mailto => 'nobody@example.com', encrypt => 1 ); my $mrc = Mail::Run::Crypt->new(%opts); diff --git a/t/encrypt-sign.t b/t/encrypt-sign.t index 3688369..1535bef 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.07'; +our $VERSION = '0.08'; my %opts = ( mailto => 'nobody@example.com', diff --git a/t/encrypt.t b/t/encrypt.t index 691d5aa..a3ddd7c 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.07'; +our $VERSION = '0.08'; 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 9de0d46..03be100 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.07'; +our $VERSION = '0.08'; { my $mrc; diff --git a/t/require-mailto.t b/t/require-mailto.t index 9611d7a..89f069f 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.07'; +our $VERSION = '0.08'; my $mrc; my $error; |