Changeset 21579
- Timestamp:
- 07/27/08 21:17:41 (6 months ago)
- Location:
- perl5/Pugs-Compiler-Perl6
- Files:
-
- 3 modified
Legend:
- Unmodified
- Added
- Removed
-
perl5/Pugs-Compiler-Perl6/ChangeLog
r21572 r21579 1 0.028 2008-07-27 1 2 - all(), any(), true(), not() 2 3 - improved smartmatching, given/when -
perl5/Pugs-Compiler-Perl6/Makefile.PL
r21576 r21579 20 20 all_from('lib/v6.pm'); 21 21 22 requires('Pugs::Compiler::Rule' => '0.3 4');22 requires('Pugs::Compiler::Rule' => '0.35'); 23 23 requires('Module::Compile' => '0.20'); 24 24 requires('Scalar::Util' => '0'); … … 123 123 } 124 124 if ( $out eq 't/regex/p6regex/p6regex.t' ) { 125 $text =~ s/^\s*plan \d+;/plan 535;/m; 126 $text =~ s/^\s*force_todo.*?\n/force_todo(18..29,49..54,62,64,66,68,77,79,81..92,94..96,101..113,247,254..255,257,259..263,266,269,274,284,286,301,303..304,314,332..372,374..388,393..394,398,400..402,404..433,484..499,502,504,507,516..522,526..528)\n/m; 125 $text =~ s/^\s*plan \d+;/plan 535;\nforce_todo(18..29,49..54,62,64,66,68,77,79,81..92,94..96,101..113,247,254..255,257,259..263,266,269,274,284,286,301,303..304,314,332..372,374..388,393..394,398,400..402,404..433,484..499,502,504,507,516..522,526..528);/m; 127 126 } 128 127 -
perl5/Pugs-Compiler-Perl6/lib/v6.pm
r21564 r21579 1 1 package v6; 2 $v6::VERSION = '0.02 7';2 $v6::VERSION = '0.028'; 3 3 4 4 # Documentation in the __END__
