Skip to content

Commit

Permalink
CPAN Release 0.51
Browse files Browse the repository at this point in the history
- Fix a bug causing 000compile to fail
  • Loading branch information
ingydotnet committed Dec 14, 2014
1 parent ded7287 commit 80bda24
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
@@ -1,6 +1,6 @@
# DO NOT EDIT
#
# This .travis.yml file generated by Zilla-Dist-0.0.174.
# This .travis.yml file generated by Zilla-Dist-0.0.175.
#
# To update it, run:
#
Expand Down
2 changes: 1 addition & 1 deletion About
Expand Up @@ -93,4 +93,4 @@ for up-to-date instructions.



# This file generated by Zilla-Dist-0.0.174
# This file generated by Zilla-Dist-0.0.175
5 changes: 5 additions & 0 deletions Changes
@@ -1,4 +1,9 @@
---
version: 0.51
date: Sun Dec 14 12:53:02 PST 2014
changes:
- Fix a bug causing 000compile to fail
---
version: 0.50
date: Fri Dec 12 10:52:23 PST 2014
changes:
Expand Down
2 changes: 1 addition & 1 deletion Meta
@@ -1,7 +1,7 @@
=meta: 0.0.2

name: TestML
version: 0.50
version: 0.51
abstract: A Generic Software Testing Meta Language
homepage: http://testml.org
language: perl
Expand Down
2 changes: 1 addition & 1 deletion lib/TestML.pm
@@ -1,7 +1,7 @@
package TestML;

use TestML::Base;
our $VERSION = '0.50';
our $VERSION = '0.51';

has runtime => ();
has compiler => ();
Expand Down
4 changes: 3 additions & 1 deletion lib/TestML/Setup.pm
Expand Up @@ -5,7 +5,9 @@ use TestML::Base;
use TestML();
BEGIN {
for (qw( YAML::XS IO::All Template::Toolkit::Simple )) {
eval "use $_; 1" or die "TestML::Setup requires $_:\n$@";
if (not $ENV{PERL_ZILD_TEST_000_COMPILE_MODULES}) {
eval "use $_; 1" or die "TestML::Setup requires $_:\n$@";
}
}
}
use File::Basename;
Expand Down

0 comments on commit 80bda24

Please sign in to comment.