Skip to content

Commit

Permalink
Version 2.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
schwern committed Oct 23, 2011
1 parent 8010a6b commit f7d577c
Show file tree
Hide file tree
Showing 7 changed files with 114 additions and 65 deletions.
2 changes: 1 addition & 1 deletion Build.PL
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ my $builder = MyBuild->new(
module_name => 'perl5i',
license => 'perl',
dist_author => 'Michael G Schwern <[email protected]>',
dist_version => "v2.8.0",
dist_version => "v2.9.0",

requires => {
'perl' => '5.10.0',
Expand Down
4 changes: 3 additions & 1 deletion MANIFEST
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
.DS_Store
.perlcriticrc
.perltidyrc
bin/perl5i.bat.PL
Expand Down Expand Up @@ -86,6 +85,7 @@ t/dump/code.t
t/dump/hash.t
t/dump/obj.t
t/dump/scalar.t
t/each.t
t/English.t
t/equal.t
t/everything_is_an_object.t
Expand All @@ -99,6 +99,7 @@ t/hash-intersect.t
t/hash-merge.t
t/intersect.t
t/io-handle.t
t/is_module_name.t
t/lexical.t
t/lib/Test/perl5i.pm
t/lib/ThisIsTrue.pm
Expand Down Expand Up @@ -148,6 +149,7 @@ t/taint.t
t/time_compat.t
t/true.t
t/try-tiny.t
t/uniq.t
t/utf8.t
t/version_0/00_compile.t
t/version_1/00_compile.t
Expand Down
34 changes: 30 additions & 4 deletions MANIFEST.SKIP
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

#!start included /usr/local/perl/5.10.0/lib/5.10.0/ExtUtils/MANIFEST.SKIP
#!start included /Users/schwern/perl5/perlbrew/perls/perl-5.14.1/lib/5.14.1/ExtUtils/MANIFEST.SKIP
# Avoid version control files.
\bRCS\b
\bCVS\b
Expand All @@ -9,6 +9,12 @@
\B\.git\b
\B\.gitignore\b
\b_darcs\b
\B\.cvsignore$

# Avoid VMS specific MakeMaker generated files
\bDescrip.MMS$
\bDESCRIP.MMS$
\bdescrip.mms$

# Avoid Makemaker generated and utility files.
\bMANIFEST\.bak
Expand All @@ -22,17 +28,35 @@
# Avoid Module::Build generated and utility files.
\bBuild$
\b_build/
\bBuild.bat$
\bBuild.COM$
\bBUILD.COM$
\bbuild.com$

# Avoid temp and backup files.
~$
\.old$
\#$
\b\.#
\.bak$
\.tmp$
\.#
\.rej$

# Avoid OS-specific files/dirs
# Mac OSX metadata
\B\.DS_Store
# Mac OSX SMB mount metadata files
\B\._

# Avoid Devel::Cover files.
# Avoid Devel::Cover and Devel::CoverX::Covered files.
\bcover_db\b
#!end included /usr/local/perl/5.10.0/lib/5.10.0/ExtUtils/MANIFEST.SKIP
\bcovered\b

# Avoid MYMETA files
^MYMETA\.
#!end included /Users/schwern/perl5/perlbrew/perls/perl-5.14.1/lib/5.14.1/ExtUtils/MANIFEST.SKIP


# Avoid Devel::NYTProf files
^nytprof
Expand All @@ -58,4 +82,6 @@
# Don't ship our motivational images
^img/

^MYMETA\.json$
# Don't ship patch files
\.patch$
\.diff$
16 changes: 8 additions & 8 deletions META.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
"requires" : {
"CLASS" : "1.00",
"Capture::Tiny" : "0.06",
"Child" : "0.007",
"Child" : "0.009",
"DateTime" : "0.47",
"DateTime::Format::Epoch" : "0.11",
"DateTime::TimeZone::Tzfile" : "0.002",
Expand Down Expand Up @@ -96,11 +96,11 @@
},
"perl5i" : {
"file" : "lib/perl5i.pm",
"version" : "v2.8.0"
"version" : "v2.9.0"
},
"perl5i::0" : {
"file" : "lib/perl5i/0.pm",
"version" : "v2.8.0"
"version" : "v2.9.0"
},
"perl5i::0::ARRAY" : {
"file" : "lib/perl5i/0/ARRAY.pm",
Expand Down Expand Up @@ -136,7 +136,7 @@
},
"perl5i::1" : {
"file" : "lib/perl5i/1.pm",
"version" : "v2.8.0"
"version" : "v2.9.0"
},
"perl5i::1::ARRAY" : {
"file" : "lib/perl5i/1/ARRAY.pm",
Expand Down Expand Up @@ -180,7 +180,7 @@
},
"perl5i::2" : {
"file" : "lib/perl5i/2.pm",
"version" : "v2.8.0"
"version" : "v2.9.0"
},
"perl5i::2::ARRAY" : {
"file" : "lib/perl5i/2/ARRAY.pm",
Expand Down Expand Up @@ -268,15 +268,15 @@
},
"perl5i::VERSION" : {
"file" : "lib/perl5i/VERSION.pm",
"version" : "v2.8.0"
"version" : "v2.9.0"
},
"perl5i::cmd" : {
"file" : "lib/perl5i/cmd.pm",
"version" : 0
},
"perl5i::latest" : {
"file" : "lib/perl5i/latest.pm",
"version" : "v2.8.0"
"version" : "v2.9.0"
}
},
"release_status" : "stable",
Expand All @@ -293,5 +293,5 @@
"x_Chat" : "irc://irc.perl.org/#perl5i",
"x_MailingList" : "http://groups.google.com/group/perl5i"
},
"version" : "v2.8.0"
"version" : "v2.9.0"
}
16 changes: 8 additions & 8 deletions META.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,10 @@ provides:
version: 0
perl5i:
file: lib/perl5i.pm
version: v2.8.0
version: v2.9.0
perl5i::0:
file: lib/perl5i/0.pm
version: v2.8.0
version: v2.9.0
perl5i::0::ARRAY:
file: lib/perl5i/0/ARRAY.pm
version: 0
Expand All @@ -70,7 +70,7 @@ provides:
version: 0
perl5i::1:
file: lib/perl5i/1.pm
version: v2.8.0
version: v2.9.0
perl5i::1::ARRAY:
file: lib/perl5i/1/ARRAY.pm
version: 0
Expand Down Expand Up @@ -103,7 +103,7 @@ provides:
version: 0
perl5i::2:
file: lib/perl5i/2.pm
version: v2.8.0
version: v2.9.0
perl5i::2::ARRAY:
file: lib/perl5i/2/ARRAY.pm
version: 0
Expand Down Expand Up @@ -169,17 +169,17 @@ provides:
version: 0
perl5i::VERSION:
file: lib/perl5i/VERSION.pm
version: v2.8.0
version: v2.9.0
perl5i::cmd:
file: lib/perl5i/cmd.pm
version: 0
perl5i::latest:
file: lib/perl5i/latest.pm
version: v2.8.0
version: v2.9.0
requires:
CLASS: 1.00
Capture::Tiny: 0.06
Child: 0.007
Child: 0.009
DateTime: 0.47
DateTime::Format::Epoch: 0.11
DateTime::TimeZone::Tzfile: 0.002
Expand Down Expand Up @@ -218,4 +218,4 @@ resources:
repository: http://github.com/schwern/perl5i/tree/master
x_Chat: irc://irc.perl.org/#perl5i
x_MailingList: http://groups.google.com/group/perl5i
version: v2.8.0
version: v2.9.0
Loading

0 comments on commit f7d577c

Please sign in to comment.