aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2017-10-14 14:42:30 +1300
committerTom Ryder <tom@sanctum.geek.nz>2017-10-14 14:42:30 +1300
commitb11008a9eba32e5f19cfc1ce25ce982ba381e740 (patch)
treeca5a40ef839dc7f2261f2c69d57f4af0f29dbf33
parentDocumentation corrections (diff)
downloadMail-Run-Crypt-b11008a9eba32e5f19cfc1ce25ce982ba381e740.tar.gz (sig)
Mail-Run-Crypt-b11008a9eba32e5f19cfc1ce25ce982ba381e740.zip
Bump versionv0.03
-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 5b05c25..e29bd3b 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.03 2017-10-14
+
+ - Several more documentation fixes
+
0.02 2017-10-14
- Lots of documentation fixes and reformatting
diff --git a/Makefile.PL b/Makefile.PL
index 6ea39bd..b4ba306 100644
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -32,7 +32,7 @@ WriteMakefile(
'meta-spec' => { version => 2 },
provides => {
'Mail::Run::Crypt' => {
- version => '0.02',
+ version => '0.03',
file => 'lib/Mail/Run/Crypt.pm',
},
},
diff --git a/README.markdown b/README.markdown
index 04deccc..2971906 100644
--- a/README.markdown
+++ b/README.markdown
@@ -4,7 +4,7 @@ Mail::Run::Crypt - Encrypt and mail output from command runs
# VERSION
-Version 0.02
+Version 0.03
# DESCRIPTION
diff --git a/bin/runcrypt b/bin/runcrypt
index 2f16dac..38d594f 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.02';
+our $VERSION = '0.03';
# Name ourselves
our $SELF = 'runcrypt';
diff --git a/lib/Mail/Run/Crypt.pm b/lib/Mail/Run/Crypt.pm
index 8a39dc6..0aaf0cc 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.02';
+our $VERSION = '0.03';
# 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.02
+Version 0.03
=head1 DESCRIPTION
diff --git a/t/instantiate.t b/t/instantiate.t
index 3b1e02c..9fbec79 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.02';
+our $VERSION = '0.03';
my $mrc = Mail::Run::Crypt->new( mailto => 'nobody@example.com' );