From: Charles McGarvey Date: Thu, 15 Feb 2018 04:11:57 +0000 (-0700) Subject: Version 0.304 X-Git-Url: https://git.dogcows.com/gitweb?p=chaz%2Fgroupsecret;a=commitdiff_plain;h=268aeeab8ce6cc38b24ef171316b066a549ab390 Version 0.304 --- diff --git a/Changes b/Changes index c9eb86a..dcaceae 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,9 @@ Revision history for groupsecret. +0.304 2018-02-14 21:11:33-07:00 MST7MDT + + * Now explicitly required Getopt::Long 2.38. Thanks cpantesters! + 0.303 2018-02-14 09:28:23-07:00 MST7MDT * Improve error messages. diff --git a/META.json b/META.json index 2811a9c..3502086 100644 --- a/META.json +++ b/META.json @@ -55,7 +55,7 @@ "File::Basename" : "0", "File::Spec" : "0", "File::Temp" : "0", - "Getopt::Long" : "0", + "Getopt::Long" : "2.38", "IPC::Open2" : "0", "IPC::Open3" : "0", "MIME::Base64" : "0", @@ -85,15 +85,15 @@ "provides" : { "App::GroupSecret" : { "file" : "lib/App/GroupSecret.pm", - "version" : "0.303" + "version" : "0.304" }, "App::GroupSecret::Crypt" : { "file" : "lib/App/GroupSecret/Crypt.pm", - "version" : "0.303" + "version" : "0.304" }, "App::GroupSecret::File" : { "file" : "lib/App/GroupSecret/File.pm", - "version" : "0.303" + "version" : "0.304" } }, "release_status" : "stable", @@ -108,7 +108,7 @@ "web" : "https://github.com/chazmcgarvey/groupsecret" } }, - "version" : "0.303", + "version" : "0.304", "x_authority" : "cpan:CCM", "x_serialization_backend" : "Cpanel::JSON::XS version 3.0239" } diff --git a/META.yml b/META.yml index 45ad7d9..0c1bdae 100644 --- a/META.yml +++ b/META.yml @@ -29,20 +29,20 @@ no_index: provides: App::GroupSecret: file: lib/App/GroupSecret.pm - version: '0.303' + version: '0.304' App::GroupSecret::Crypt: file: lib/App/GroupSecret/Crypt.pm - version: '0.303' + version: '0.304' App::GroupSecret::File: file: lib/App/GroupSecret/File.pm - version: '0.303' + version: '0.304' requires: Carp: '0' Exporter: '0' File::Basename: '0' File::Spec: '0' File::Temp: '0' - Getopt::Long: '0' + Getopt::Long: '2.38' IPC::Open2: '0' IPC::Open3: '0' MIME::Base64: '0' @@ -56,6 +56,6 @@ resources: bugtracker: https://github.com/chazmcgarvey/groupsecret/issues homepage: https://github.com/chazmcgarvey/groupsecret repository: https://github.com/chazmcgarvey/groupsecret.git -version: '0.303' +version: '0.304' x_authority: cpan:CCM x_serialization_backend: 'YAML::Tiny version 1.70' diff --git a/Makefile.PL b/Makefile.PL index cbf6513..1fa3edb 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -25,7 +25,7 @@ my %WriteMakefileArgs = ( "File::Basename" => 0, "File::Spec" => 0, "File::Temp" => 0, - "Getopt::Long" => 0, + "Getopt::Long" => "2.38", "IPC::Open2" => 0, "IPC::Open3" => 0, "MIME::Base64" => 0, @@ -44,7 +44,7 @@ my %WriteMakefileArgs = ( "IPC::Open3" => 0, "Test::More" => 0 }, - "VERSION" => "0.303", + "VERSION" => "0.304", "test" => { "TESTS" => "t/*.t" } @@ -59,7 +59,7 @@ my %FallbackPrereqs = ( "File::Spec" => 0, "File::Temp" => 0, "FindBin" => 0, - "Getopt::Long" => 0, + "Getopt::Long" => "2.38", "IO::Handle" => 0, "IPC::Open2" => 0, "IPC::Open3" => 0, diff --git a/README b/README index 75c29b9..2c9b522 100644 --- a/README +++ b/README @@ -4,7 +4,7 @@ NAME VERSION - version 0.303 + version 0.304 SYNOPSIS diff --git a/bin/groupsecret b/bin/groupsecret index 8f8465b..bd59d1a 100755 --- a/bin/groupsecret +++ b/bin/groupsecret @@ -6,7 +6,7 @@ use warnings FATAL => 'all'; use strict; -our $VERSION = '0.303'; # VERSION +our $VERSION = '0.304'; # VERSION use App::GroupSecret; @@ -25,7 +25,7 @@ groupsecret - A simple tool for maintaining a shared group secret =head1 VERSION -version 0.303 +version 0.304 =head1 SYNOPSIS diff --git a/lib/App/GroupSecret.pm b/lib/App/GroupSecret.pm index 37c9cc5..5e4988d 100644 --- a/lib/App/GroupSecret.pm +++ b/lib/App/GroupSecret.pm @@ -5,11 +5,11 @@ package App::GroupSecret; use warnings; use strict; -our $VERSION = '0.303'; # VERSION +our $VERSION = '0.304'; # VERSION use App::GroupSecret::Crypt qw(generate_secure_random_bytes read_openssh_key_fingerprint); use App::GroupSecret::File; -use Getopt::Long qw(GetOptionsFromArray); +use Getopt::Long 2.38 qw(GetOptionsFromArray); use MIME::Base64; use Pod::Usage; use namespace::clean; @@ -268,7 +268,7 @@ App::GroupSecret - A simple tool for maintaining a shared group secret =head1 VERSION -version 0.303 +version 0.304 =head1 DESCRIPTION diff --git a/lib/App/GroupSecret/Crypt.pm b/lib/App/GroupSecret/Crypt.pm index c3584ef..1bae005 100644 --- a/lib/App/GroupSecret/Crypt.pm +++ b/lib/App/GroupSecret/Crypt.pm @@ -4,7 +4,7 @@ package App::GroupSecret::Crypt; use warnings; use strict; -our $VERSION = '0.303'; # VERSION +our $VERSION = '0.304'; # VERSION use Exporter qw(import); use File::Temp; @@ -254,7 +254,7 @@ App::GroupSecret::Crypt - Collection of crypto-related subroutines =head1 VERSION -version 0.303 +version 0.304 =head1 FUNCTIONS diff --git a/lib/App/GroupSecret/File.pm b/lib/App/GroupSecret/File.pm index f662473..733bd55 100644 --- a/lib/App/GroupSecret/File.pm +++ b/lib/App/GroupSecret/File.pm @@ -5,7 +5,7 @@ package App::GroupSecret::File; use warnings; use strict; -our $VERSION = '0.303'; # VERSION +our $VERSION = '0.304'; # VERSION use App::GroupSecret::Crypt qw( generate_secure_random_bytes @@ -252,7 +252,7 @@ App::GroupSecret::File - Reading and writing groupsecret keyfiles =head1 VERSION -version 0.303 +version 0.304 =head1 SYNOPSIS diff --git a/t/00-report-prereqs.dd b/t/00-report-prereqs.dd index c87c72d..0618986 100644 --- a/t/00-report-prereqs.dd +++ b/t/00-report-prereqs.dd @@ -31,7 +31,7 @@ do { my $x = { 'File::Basename' => '0', 'File::Spec' => '0', 'File::Temp' => '0', - 'Getopt::Long' => '0', + 'Getopt::Long' => '2.38', 'IPC::Open2' => '0', 'IPC::Open3' => '0', 'MIME::Base64' => '0',