From 5261f8bec01a32429f2c908c4d0b18c283ba8bdc Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Wed, 18 Oct 2017 21:16:38 +1300 Subject: Bump version --- Changes | 6 ++++++ Makefile.PL | 2 +- README.markdown | 2 +- bin/runcrypt | 2 +- lib/Mail/Run/Crypt.pm | 4 ++-- t/encrypt-sign.t | 2 +- t/encrypt.t | 2 +- t/require-key-data.t | 2 +- t/require-mailto.t | 2 +- 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; -- cgit v1.2.3