]> Dogcows Code - chaz/groupsecret/commitdiff
Version 0.304 dist
authorCharles McGarvey <chazmcgarvey@brokenzipper.com>
Thu, 15 Feb 2018 04:11:57 +0000 (21:11 -0700)
committerCharles McGarvey <chazmcgarvey@brokenzipper.com>
Thu, 15 Feb 2018 04:11:57 +0000 (21:11 -0700)
Changes
META.json
META.yml
Makefile.PL
README
bin/groupsecret
lib/App/GroupSecret.pm
lib/App/GroupSecret/Crypt.pm
lib/App/GroupSecret/File.pm
t/00-report-prereqs.dd

diff --git a/Changes b/Changes
index c9eb86a9a00e79a590f8764ae178d8864b73b671..dcaceaef2326f62fddbc63bc2bcc4e2596dbfc5a 100644 (file)
--- 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.
index 2811a9c4c7e57470f9dea955feca226e359c1e3b..3502086df17a9a633299b4f9196cd37da3b8e8ab 100644 (file)
--- 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",
    "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",
          "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"
 }
index 45ad7d92caa4323c09c6604f9d18abacb1745207..0c1bdae78edf4ecb9d66594667111b0d3d959bba 100644 (file)
--- 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'
index cbf651379c0758ab7903e953b2103fa81d7802cc..1fa3edb0b3ebf7b657438fac88e64b24cfa46c0d 100644 (file)
@@ -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 75c29b9a299f3076cc178fbb33f4aa2a8deff341..2c9b52270e731ec13341a98b5fe7bf71c25ff031 100644 (file)
--- a/README
+++ b/README
@@ -4,7 +4,7 @@ NAME
 
 VERSION
 
-    version 0.303
+    version 0.304
 
 SYNOPSIS
 
index 8f8465b211cc4370bc8ee09a361b7fc925ca0370..bd59d1a9c24510afee1c0fc1257e618af93bbbf5 100755 (executable)
@@ -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
 
index 37c9cc54e24b031bcea523d2d148a8e819e59f9b..5e4988d6ddd4d8b9f650bf327db8dd0d9e5d09f0 100644 (file)
@@ -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
 
index c3584ef1aadf78d55817839b66b8869658865f71..1bae005d7697be2967506efa01bd95cc48c731db 100644 (file)
@@ -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
 
index f6624736aeb5c0ce1d7dedbdeb850b757b868262..733bd55931945e40fe288e2fb79018fb32ba7e6d 100644 (file)
@@ -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
 
index c87c72d008ec47a1a702138d3185a8bbc0fba6a2..0618986c93a7126a98a58d8861a23d6bf92e2544 100644 (file)
@@ -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',
This page took 0.030126 seconds and 4 git commands to generate.