diff options
author | Richard Simões <rsimoes@cpan.org> | 2011-12-12 18:38:54 -0600 |
---|---|---|
committer | Richard Simões <rsimoes@cpan.org> | 2011-12-12 18:38:54 -0600 |
commit | aaf7d731d32de989358fec27d2a3565a5d9b9f31 (patch) | |
tree | 5da08cc8bc2de1ec136ba58aea22b2172706edbe | |
parent | __END__ before POD (diff) | |
download | dancer-template-xslate-aaf7d731d32de989358fec27d2a3565a5d9b9f31.tar.gz |
checkin before tagging
-rw-r--r-- | Changes | 2 | ||||
-rw-r--r-- | dist.ini | 2 | ||||
-rw-r--r-- | t/01-main.t | 1 |
3 files changed, 3 insertions, 2 deletions
diff --git a/Changes b/Changes index 799eb2b..8edba69 100644 --- a/Changes +++ b/Changes @@ -1,6 +1,8 @@ Revision history for Dancer-Template-Xslate {{$NEXT}} + +0.02 2011-12-12 18:35:33 CST6CDT - fix bug preventing templates with extensions other than "tt" from being found - accept relative template paths - fix MS Windows pathing bug diff --git a/dist.ini b/dist.ini index 5fabcfb..c0b0ace 100644 --- a/dist.ini +++ b/dist.ini @@ -3,7 +3,7 @@ author = franck cuny <franck@lumberjaph.net> license = Perl_5 copyright_holder = franck cuny copyright_year = 2011 -version = 0.010_001 +version = 0.02 [@Filter] bundle = @Basic diff --git a/t/01-main.t b/t/01-main.t index c0961e3..1a79add 100644 --- a/t/01-main.t +++ b/t/01-main.t @@ -10,7 +10,6 @@ ok( "Dancer::Template::Xslate engine created" ); my $template = catfile(qw(t views index.xslate)); - my $result = $engine->render( $template, { var1 => 1, |