]> Dogcows Code - chaz/p5-Dist-Zilla-PluginBundle-Author-CCM/commitdiff
Version 0.012 dist
authorCharles McGarvey <ccm@cpan.org>
Fri, 8 Apr 2022 21:53:49 +0000 (15:53 -0600)
committerCharles McGarvey <ccm@cpan.org>
Fri, 8 Apr 2022 21:53:49 +0000 (15:53 -0600)
Changes
META.json
META.yml
Makefile.PL
README
lib/Dist/Zilla/PluginBundle/Author/CCM.pm
lib/Pod/Weaver/PluginBundle/Author/CCM.pm

diff --git a/Changes b/Changes
index fce7f7b15ca43c8d7e4c74d4f4ccf2384ccc43ae..489ee9884ca854395ff5e3c7754bbea5aba12890 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,5 +1,9 @@
 Revision history for Dist-Zilla-PluginBundle-Author-CCM.
 
+0.012     2022-04-08 15:53:36-0600
+
+  * Allow no installer
+
 0.011     2022-03-31 08:24:44-0600
 
   * Change NextRelease datetime format
index bdd427dd656cac795770785a84c6abd815941b80..8f5b05373bd7ede309223c5ef52c752a8ddedbe7 100644 (file)
--- a/META.json
+++ b/META.json
    "provides" : {
       "Dist::Zilla::PluginBundle::Author::CCM" : {
          "file" : "lib/Dist/Zilla/PluginBundle/Author/CCM.pm",
-         "version" : "0.011"
+         "version" : "0.012"
       },
       "Pod::Weaver::PluginBundle::Author::CCM" : {
          "file" : "lib/Pod/Weaver/PluginBundle/Author/CCM.pm",
-         "version" : "0.011"
+         "version" : "0.012"
       }
    },
    "release_status" : "stable",
          "web" : "https://github.com/chazmcgarvey/Dist-Zilla-PluginBundle-Author-CCM"
       }
    },
-   "version" : "0.011",
+   "version" : "0.012",
    "x_authority" : "cpan:CCM",
    "x_generated_by_perl" : "v5.34.1",
    "x_serialization_backend" : "Cpanel::JSON::XS version 4.27",
index 556f3c4cbd684d1a435f7b2afe27d358328c20ef..40c833ebc09107f1fa68b349a4aa20986dbb6b62 100644 (file)
--- a/META.yml
+++ b/META.yml
@@ -33,10 +33,10 @@ no_index:
 provides:
   Dist::Zilla::PluginBundle::Author::CCM:
     file: lib/Dist/Zilla/PluginBundle/Author/CCM.pm
-    version: '0.011'
+    version: '0.012'
   Pod::Weaver::PluginBundle::Author::CCM:
     file: lib/Pod/Weaver/PluginBundle/Author/CCM.pm
-    version: '0.011'
+    version: '0.012'
 recommends:
   Dist::Zilla::Plugin::FakeRelease: '0'
   Dist::Zilla::Plugin::Prereqs::FromCPANfile: '0'
@@ -122,7 +122,7 @@ resources:
   bugtracker: https://github.com/chazmcgarvey/Dist-Zilla-PluginBundle-Author-CCM/issues
   homepage: https://github.com/chazmcgarvey/Dist-Zilla-PluginBundle-Author-CCM
   repository: https://github.com/chazmcgarvey/Dist-Zilla-PluginBundle-Author-CCM.git
-version: '0.011'
+version: '0.012'
 x_authority: cpan:CCM
 x_generated_by_perl: v5.34.1
 x_serialization_backend: 'YAML::Tiny version 1.73'
index 07be1af84473cbdb64ad73a6aaf7da6e3a0c8fb2..284ce90015014f85765772705e1a026a5c15416f 100644 (file)
@@ -101,7 +101,7 @@ my %WriteMakefileArgs = (
     "IPC::Open3" => 0,
     "Test::More" => 0
   },
-  "VERSION" => "0.011",
+  "VERSION" => "0.012",
   "test" => {
     "TESTS" => "t/*.t"
   }
diff --git a/README b/README
index 86ede03c48d1aefb865fbbe83d6328a078e72029..adab67852a9583b6d34624a278aa6bd6e68f0374 100644 (file)
--- a/README
+++ b/README
@@ -5,7 +5,7 @@ NAME
 
 VERSION
 
-    version 0.011
+    version 0.012
 
 SYNOPSIS
 
index 933b9f47c6580106dea2b59010242e674370ac7e..5d904d69054671d9a29f3e42341133064ba0432b 100644 (file)
@@ -7,7 +7,7 @@ use 5.014;
 use warnings;
 use strict;
 
-our $VERSION = '0.011'; # VERSION
+our $VERSION = '0.012'; # VERSION
 
 use Dist::Zilla::Util;
 use Moose;
@@ -88,6 +88,7 @@ sub configure {
     my @git_remotes         = qw(github origin);
     my @check_files         = qw(:InstallModules :ExecFiles :TestFiles :ExtraTestFiles);
     my $perl_version_target = $self->max_target_perl;
+    my $installer           = $self->installer;
 
     if ($self->no_upload) {
         say '[@Author::CCM] WARNING! WARNING! WARNING! *** You are in no_upload mode!! ***';
@@ -147,7 +148,7 @@ sub configure {
         ['Manifest'],
         ['ManifestSkip'],
 
-        $self->installer,     # e.g. MakeMaker
+        $installer ? $self->installer : (), # e.g. MakeMaker
 
         # RELEASE
         ['NextRelease' => {format => '%-9v %{yyyy-MM-dd HH:mm:ssZZZ}d%{ (TRIAL RELEASE)}T'}],
@@ -195,7 +196,7 @@ Dist::Zilla::PluginBundle::Author::CCM - A plugin bundle for distributions built
 
 =head1 VERSION
 
-version 0.011
+version 0.012
 
 =head1 SYNOPSIS
 
index bcebb6884aeb61ded131c61bb9b0f6d0ce6e456c..bfa41c9e58014aab0e5c2b684579fc996eec39b7 100644 (file)
@@ -6,7 +6,7 @@ use 5.008;
 use warnings;
 use strict;
 
-our $VERSION = '0.011'; # VERSION
+our $VERSION = '0.012'; # VERSION
 
 use Pod::Weaver::Config::Assembler;
 use namespace::autoclean;
@@ -105,7 +105,7 @@ Pod::Weaver::PluginBundle::Author::CCM - A plugin bundle for pod woven by CCM
 
 =head1 VERSION
 
-version 0.011
+version 0.012
 
 =head1 SYNOPSIS
 
This page took 0.077489 seconds and 4 git commands to generate.