The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
Changes 02
MANIFEST 01
META.json 22
META.yml 016
Makefile.PL 13
README 11
eg/dump.pl 11
lib/Pod/Eventual/Simple.pm 22
lib/Pod/Eventual.pm 33
9 files changed (This is a version diff) 1031
@@ -1,5 +1,7 @@
 Revision history for Pod-Eventual
 
+0.093330  2009-11-29 17:42:51 America/New_York
+          re-release to include a META.yml for cpandeps
 
 0.093170  2009-11-13
           document *all four* event types
@@ -2,6 +2,7 @@ Changes
 LICENSE
 MANIFEST
 META.json
+META.yml
 Makefile.PL
 README
 eg/blanks.pod
@@ -6,8 +6,8 @@
       "version" : 1.4,
       "url" : "http://module-build.sourceforge.net/META-spec-v1.4.html"
    },
-   "generated_by" : "Dist::Zilla version 1.093160",
-   "version" : "0.093170",
+   "generated_by" : "Dist::Zilla version 1.093290",
+   "version" : "0.093330",
    "name" : "Pod-Eventual",
    "author" : [
       "Ricardo SIGNES <rjbs@cpan.org>"
@@ -0,0 +1,16 @@
+---
+abstract: 'read a POD document as a series of trivial events'
+author:
+  - 'Ricardo SIGNES <rjbs@cpan.org>'
+generated_by: 'Dist::Zilla version 1.093290'
+license: perl
+meta-spec:
+  url: http://module-build.sourceforge.net/META-spec-v1.4.html
+  version: 1.4
+name: Pod-Eventual
+requires:
+  Mixin::Linewise::Readers: 0.001
+  Test::Deep: 0
+resources:
+  repository: http://github.com/rjbs/pod-eventual
+version: 0.093330
@@ -2,6 +2,8 @@
 use strict;
 use warnings;
 
+
+
 use ExtUtils::MakeMaker;
 
 WriteMakefile(
@@ -9,7 +11,7 @@ WriteMakefile(
   NAME      => 'Pod::Eventual',
   AUTHOR    => "Ricardo\ SIGNES\ \<rjbs\@cpan\.org\>",
   ABSTRACT  => "read\ a\ POD\ document\ as\ a\ series\ of\ trivial\ events",
-  VERSION   => '0.093170',
+  VERSION   => '0.093330',
   EXE_FILES => [ qw() ],
   (eval { ExtUtils::MakeMaker->VERSION(6.31) } ? (LICENSE => 'perl') : ()),
   PREREQ_PM    => {
@@ -1,7 +1,7 @@
 
 
 This archive contains the distribution Pod-Eventual, version
-0.093170:
+0.093330:
 
   read a POD document as a series of trivial events
 
@@ -6,7 +6,7 @@ our @events;
 
 {
   package Pod::Gather;
-our $VERSION = '0.093170';
+our $VERSION = '0.093330';
 
 
   use base 'Pod::Eventual';
@@ -1,7 +1,7 @@
 use strict;
 use warnings;
 package Pod::Eventual::Simple;
-our $VERSION = '0.093170';
+our $VERSION = '0.093330';
 
 
 use Pod::Eventual;
@@ -42,7 +42,7 @@ Pod::Eventual::Simple - just get an array of the stuff Pod::Eventual finds
 
 =head1 VERSION
 
-version 0.093170
+version 0.093330
 
 =head1 SYNOPSIS
 
@@ -1,7 +1,7 @@
 use strict;
 use warnings;
 package Pod::Eventual;
-our $VERSION = '0.093170';
+our $VERSION = '0.093330';
 
 
 # ABSTRACT: read a POD document as a series of trivial events
@@ -124,12 +124,12 @@ Pod::Eventual - read a POD document as a series of trivial events
 
 =head1 VERSION
 
-version 0.093170
+version 0.093330
 
 =head1 SYNOPSIS
 
   package Your::Pod::Parser;
-our $VERSION = '0.093170';
+our $VERSION = '0.093330';
 
 
   use base 'Pod::Eventual';