diff options
-rw-r--r-- | Changes | 5 | ||||
-rw-r--r-- | Makefile.PL | 8 | ||||
-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, 19 insertions, 14 deletions
@@ -3,6 +3,11 @@ 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.12 2021-07-01 + + - Update URLs in Makefile.PL + - Specify minimum Perl version correctly in Makefile.PL + 0.11 2018-02-21 - Remove unneeded File::Stat dependency diff --git a/Makefile.PL b/Makefile.PL index 7ec9943..e347b65 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -11,7 +11,7 @@ WriteMakefile( ABSTRACT_FROM => 'lib/Mail/Run/Crypt.pm', LICENSE => 'artistic_2', PL_FILES => {}, - MIN_PERL_VERSION => '5.008_001', + MIN_PERL_VERSION => '5.008001', CONFIGURE_REQUIRES => { 'ExtUtils::MakeMaker' => '0', }, @@ -31,16 +31,16 @@ WriteMakefile( 'meta-spec' => { version => 2 }, provides => { 'Mail::Run::Crypt' => { - version => '0.11', + version => '0.12', file => 'lib/Mail/Run/Crypt.pm', }, }, resources => { - homepage => 'https://sanctum.geek.nz/cgit/Mail-Run-Crypt.git/', + homepage => 'https://dev.sanctum.geek.nz/cgit/Mail-Run-Crypt.git/', repository => { type => 'git', url => 'https://sanctum.geek.nz/code/Mail-Run-Crypt.git/', - web => 'https://sanctum.geek.nz/cgit/Mail-Run-Crypt.git/', + web => 'https://dev.sanctum.geek.nz/cgit/Mail-Run-Crypt.git/', }, }, }, diff --git a/README.markdown b/README.markdown index ad0c4a9..dfcfe7c 100644 --- a/README.markdown +++ b/README.markdown @@ -4,7 +4,7 @@ Mail::Run::Crypt - Encrypt and mail output from command runs # VERSION -Version 0.11 +Version 0.12 # DESCRIPTION diff --git a/bin/runcrypt b/bin/runcrypt index 9a7e6d9..5af80a7 100755 --- a/bin/runcrypt +++ b/bin/runcrypt @@ -15,7 +15,7 @@ use Getopt::Long::Descriptive; use Mail::Run::Crypt; # Specify package version -our $VERSION = '0.11'; +our $VERSION = '0.12'; # Name ourselves our $SELF = 'runcrypt'; diff --git a/lib/Mail/Run/Crypt.pm b/lib/Mail/Run/Crypt.pm index 9e1539a..21451a4 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.11'; +our $VERSION = '0.12'; # 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.11 +Version 0.12 =head1 DESCRIPTION diff --git a/t/custom-name.t b/t/custom-name.t index b43976c..74c0510 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.11'; +our $VERSION = '0.12'; my $name = 'mrc_custom'; my %opts = ( diff --git a/t/encrypt-explicit.t b/t/encrypt-explicit.t index 7944c7a..034ae24 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.11'; +our $VERSION = '0.12'; 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 e137bf0..284ca29 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.11'; +our $VERSION = '0.12'; my %opts = ( mailto => 'nobody@example.com', diff --git a/t/encrypt.t b/t/encrypt.t index 973a59f..d4e10bb 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.11'; +our $VERSION = '0.12'; 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 2a00a29..219a077 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.11'; +our $VERSION = '0.12'; { my $mrc; diff --git a/t/require-mailto.t b/t/require-mailto.t index 5db57dc..7fad40c 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.11'; +our $VERSION = '0.12'; my $mrc; my $error; |