Skip to content

Commit ad5cf49

Browse files
committed
fix the link to IO::Async in the thanks section
1 parent c85cec2 commit ad5cf49

File tree

5 files changed

+25
-12
lines changed

5 files changed

+25
-12
lines changed

META.json

+12-6
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"Christian Walde <walde.christian@gmail.com>"
55
],
66
"dynamic_config" : 0,
7-
"generated_by" : "Dist::Zilla version 5.036, CPAN::Meta::Converter version 2.143240",
7+
"generated_by" : "Dist::Zilla version 6.007, CPAN::Meta::Converter version 2.150005",
88
"license" : [
99
"unrestricted"
1010
],
@@ -15,10 +15,10 @@
1515
"name" : "Microidium",
1616
"no_index" : {
1717
"directory" : [
18-
"t",
19-
"xt",
18+
"corpus",
2019
"examples",
21-
"corpus"
20+
"t",
21+
"xt"
2222
],
2323
"package" : [
2424
"DB"
@@ -34,12 +34,16 @@
3434
},
3535
"develop" : {
3636
"requires" : {
37+
"English" : "0",
3738
"Pod::Coverage::TrustPod" : "0",
3839
"Test::CPAN::Meta" : "0",
3940
"Test::More" : "0",
4041
"Test::Pod" : "1.41",
4142
"Test::Pod::Coverage" : "1.08",
42-
"Test::Version" : "1"
43+
"Test::Portability::Files" : "0",
44+
"Test::Version" : "1",
45+
"strict" : "0",
46+
"warnings" : "0"
4347
}
4448
},
4549
"runtime" : {
@@ -99,6 +103,7 @@
99103
"IPC::Open3" : "0",
100104
"Test::InDistDir" : "0",
101105
"Test::More" : "0",
106+
"blib" : "1.01",
102107
"perl" : "5.010",
103108
"strict" : "0",
104109
"warnings" : "0"
@@ -200,6 +205,7 @@
200205
"web" : "https://github.com/wchristian/Microidium"
201206
}
202207
},
203-
"version" : "0.000001"
208+
"version" : "0.000001",
209+
"x_serialization_backend" : "Cpanel::JSON::XS version 3.0213"
204210
}
205211

Makefile.PL

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# This file was automatically generated by Dist::Zilla::Plugin::MakeMaker v5.036.
1+
# This file was automatically generated by Dist::Zilla::Plugin::MakeMaker v6.007.
22
use strict;
33
use warnings;
44

@@ -81,6 +81,7 @@ my %WriteMakefileArgs = (
8181
"IPC::Open3" => 0,
8282
"Test::InDistDir" => 0,
8383
"Test::More" => 0,
84+
"blib" => "1.01",
8485
"strict" => 0,
8586
"warnings" => 0
8687
},
@@ -100,9 +101,7 @@ my %FallbackPrereqs = (
100101
"Clone" => 0,
101102
"Color::Mix" => 0,
102103
"Data::GUID" => 0,
103-
"ExtUtils::MakeMaker" => 0,
104104
"File::ShareDir" => 0,
105-
"File::ShareDir::Install" => "0.06",
106105
"File::Spec" => 0,
107106
"File::Temp" => 0,
108107
"IO::All" => 0,
@@ -138,6 +137,7 @@ my %FallbackPrereqs = (
138137
"Test::InDistDir" => 0,
139138
"Test::More" => 0,
140139
"Time::HiRes" => 0,
140+
"blib" => "1.01",
141141
"constant" => 0,
142142
"curry" => 0,
143143
"experimental" => 0,

README.pod

+4-2
Original file line numberDiff line numberDiff line change
@@ -49,9 +49,9 @@ L<SVatG|http://demogroup.vc/> for emotional support and graphics programming
4949
knowledge.
5050

5151
L<Paul Evans|https://metacpan.org/author/PEVANS> and other maintainers
52-
L<Async::IO>, used for networking.
52+
L<IO::Async>, used for networking.
5353

54-
L<Ingy döt Net|https://metacpan.org/author/INGY> and other maintainers for
54+
L<Ingy d�t Net|https://metacpan.org/author/INGY> and other maintainers for
5555
L<Inline::Module> and L<Inline::C>, used to provide slow Perl math as blazing
5656
fast XS.
5757

@@ -87,6 +87,8 @@ Sounds made with http://www.bfxr.net/
8787

8888
Font texture made with http://www.codehead.co.uk/cbfg/
8989

90+
To be inspected for inspiration: http://www.xpilot.org/development/
91+
9092
=for :stopwords cpan testmatrix url annocpan anno bugtracker rt cpants kwalitee diff irc mailto metadata placeholders metacpan
9193

9294
=head1 SUPPORT

cpanfile

+5
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ on 'test' => sub {
5151
requires "IPC::Open3" => "0";
5252
requires "Test::InDistDir" => "0";
5353
requires "Test::More" => "0";
54+
requires "blib" => "1.01";
5455
requires "perl" => "5.010";
5556
requires "strict" => "0";
5657
requires "warnings" => "0";
@@ -63,10 +64,14 @@ on 'configure' => sub {
6364
};
6465

6566
on 'develop' => sub {
67+
requires "English" => "0";
6668
requires "Pod::Coverage::TrustPod" => "0";
6769
requires "Test::CPAN::Meta" => "0";
6870
requires "Test::More" => "0";
6971
requires "Test::Pod" => "1.41";
7072
requires "Test::Pod::Coverage" => "1.08";
73+
requires "Test::Portability::Files" => "0";
7174
requires "Test::Version" => "1";
75+
requires "strict" => "0";
76+
requires "warnings" => "0";
7277
};

lib/Microidium.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ L<SVatG|http://demogroup.vc/> for emotional support and graphics programming
4444
knowledge.
4545
4646
L<Paul Evans|https://metacpan.org/author/PEVANS> and other maintainers
47-
L<Async::IO>, used for networking.
47+
L<IO::Async>, used for networking.
4848
4949
L<Ingy döt Net|https://metacpan.org/author/INGY> and other maintainers for
5050
L<Inline::Module> and L<Inline::C>, used to provide slow Perl math as blazing

0 commit comments

Comments
 (0)