aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2017-12-04 00:12:01 +1300
committerTom Ryder <tom@sanctum.geek.nz>2017-12-04 00:12:29 +1300
commitf9a5436e92a05dbbe27780b2d743e6740f80193b (patch)
tree9a4d260bc3b494dc4349aba2c85c71b1ba50ff63
parentUse short shebang for translation (diff)
downloadMail-Run-Crypt-f9a5436e92a05dbbe27780b2d743e6740f80193b.tar.gz
Mail-Run-Crypt-f9a5436e92a05dbbe27780b2d743e6740f80193b.zip
Bump version number to 0.10v0.10
-rw-r--r--Changes4
-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/custom-name.t2
-rw-r--r--t/encrypt-explicit.t2
-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
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;