From f9a5436e92a05dbbe27780b2d743e6740f80193b Mon Sep 17 00:00:00 2001 From: Tom Ryder Date: Mon, 4 Dec 2017 00:12:01 +1300 Subject: Bump version number to 0.10 --- Changes | 4 ++++ Makefile.PL | 2 +- README.markdown | 2 +- bin/runcrypt | 2 +- lib/Mail/Run/Crypt.pm | 4 ++-- t/custom-name.t | 2 +- t/encrypt-explicit.t | 2 +- t/encrypt-sign.t | 2 +- t/encrypt.t | 2 +- t/require-key-data.t | 2 +- t/require-mailto.t | 2 +- 11 files changed, 15 insertions(+), 11 deletions(-) diff --git a/Changes b/Changes index 35fd3b0..f22ba3f 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.10 2017-12-04 + + - Switch to translatable shebang for binscript + 0.09 2017-10-27 - Use warn/die as appropriate, rather than carp/croak. diff --git a/Makefile.PL b/Makefile.PL index 6d342cc..dba409c 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -31,7 +31,7 @@ WriteMakefile( 'meta-spec' => { version => 2 }, provides => { 'Mail::Run::Crypt' => { - version => '0.09', + version => '0.10', file => 'lib/Mail/Run/Crypt.pm', }, }, diff --git a/README.markdown b/README.markdown index d223126..30f1396 100644 --- a/README.markdown +++ b/README.markdown @@ -4,7 +4,7 @@ Mail::Run::Crypt - Encrypt and mail output from command runs # VERSION -Version 0.09 +Version 0.10 # DESCRIPTION diff --git a/bin/runcrypt b/bin/runcrypt index 5a76060..1e2def6 100755 --- a/bin/runcrypt +++ b/bin/runcrypt @@ -16,7 +16,7 @@ use Getopt::Long::Descriptive; use Mail::Run::Crypt; # Specify package version -our $VERSION = '0.09'; +our $VERSION = '0.10'; # Name ourselves our $SELF = 'runcrypt'; diff --git a/lib/Mail/Run/Crypt.pm b/lib/Mail/Run/Crypt.pm index 270866c..d808e6d 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.09'; +our $VERSION = '0.10'; # 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.09 +Version 0.10 =head1 DESCRIPTION diff --git a/t/custom-name.t b/t/custom-name.t index ba053e3..57dc90b 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.09'; +our $VERSION = '0.10'; my $name = 'mrc_custom'; my %opts = ( diff --git a/t/encrypt-explicit.t b/t/encrypt-explicit.t index 24bc591..1ab526a 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.09'; +our $VERSION = '0.10'; 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 aeac091..926f00d 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.09'; +our $VERSION = '0.10'; my %opts = ( mailto => 'nobody@example.com', diff --git a/t/encrypt.t b/t/encrypt.t index 3accd9c..0a790f7 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.09'; +our $VERSION = '0.10'; 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 797175e..9806bf8 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.09'; +our $VERSION = '0.10'; { my $mrc; diff --git a/t/require-mailto.t b/t/require-mailto.t index d5d8293..451b51d 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.09'; +our $VERSION = '0.10'; my $mrc; my $error; -- cgit v1.2.3