aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2017-10-14 15:16:59 +1300
committerTom Ryder <tom@sanctum.geek.nz>2017-10-14 15:16:59 +1300
commit6f917554e3a5253373aec1a706f56f499eba9848 (patch)
tree93b55e3abbcf3734a08a77fbcc96a22a526b8273
parentCorrect a documentation error (diff)
downloadMail-Run-Crypt-6f917554e3a5253373aec1a706f56f499eba9848.tar.gz (sig)
Mail-Run-Crypt-6f917554e3a5253373aec1a706f56f499eba9848.zip
Bump versionv0.04
-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/instantiate.t2
6 files changed, 10 insertions, 6 deletions
diff --git a/Changes b/Changes
index e29bd3b..06446f3 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.04 2017-10-14
+
+ - Another documentation fix
+
0.03 2017-10-14
- Several more documentation fixes
diff --git a/Makefile.PL b/Makefile.PL
index b4ba306..e41f722 100644
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -32,7 +32,7 @@ WriteMakefile(
'meta-spec' => { version => 2 },
provides => {
'Mail::Run::Crypt' => {
- version => '0.03',
+ version => '0.04',
file => 'lib/Mail/Run/Crypt.pm',
},
},
diff --git a/README.markdown b/README.markdown
index 1a88bff..fcf89a1 100644
--- a/README.markdown
+++ b/README.markdown
@@ -4,7 +4,7 @@ Mail::Run::Crypt - Encrypt and mail output from command runs
# VERSION
-Version 0.03
+Version 0.04
# DESCRIPTION
diff --git a/bin/runcrypt b/bin/runcrypt
index 1e110c4..4b7dfe5 100755
--- a/bin/runcrypt
+++ b/bin/runcrypt
@@ -18,7 +18,7 @@ use Getopt::Long::Descriptive;
use Mail::Run::Crypt;
# Specify package version
-our $VERSION = '0.03';
+our $VERSION = '0.04';
# Name ourselves
our $SELF = 'runcrypt';
diff --git a/lib/Mail/Run/Crypt.pm b/lib/Mail/Run/Crypt.pm
index b059761..2fa1bb8 100644
--- a/lib/Mail/Run/Crypt.pm
+++ b/lib/Mail/Run/Crypt.pm
@@ -18,7 +18,7 @@ use Mail::GnuPG;
use MIME::Entity;
# Specify package verson
-our $VERSION = '0.03';
+our $VERSION = '0.04';
# Default exit value
const our $DEFAULT_EXIT => 127;
@@ -135,7 +135,7 @@ Mail::Run::Crypt - Encrypt and mail output from command runs
=head1 VERSION
-Version 0.03
+Version 0.04
=head1 DESCRIPTION
diff --git a/t/instantiate.t b/t/instantiate.t
index 9fbec79..1b7058c 100644
--- a/t/instantiate.t
+++ b/t/instantiate.t
@@ -8,7 +8,7 @@ use Test::More tests => 1;
use Mail::Run::Crypt;
-our $VERSION = '0.03';
+our $VERSION = '0.04';
my $mrc = Mail::Run::Crypt->new( mailto => 'nobody@example.com' );