Skip to content

Commit

Permalink
Checking in changes prior to tagging of version 3.1.0.
Browse files Browse the repository at this point in the history
Changelog diff is:

diff --git a/Changes b/Changes
index 69f2c36..2c3f0e2 100644
--- a/Changes
+++ b/Changes
@@ -1,10 +1,19 @@
 Revision history for Perl extension Text::Xslate

+3.1.0 2013-11-16 16:46:35+0900
+    [BUG FIXES]
+    - Close #95; $/ affected the parse() method
+
+    [FEATURES]
+    - Add $xslate->validate($file) method to check template syntax
+
 3.0.2 2013-11-15 21:56:53+0900
+    [BUG FIXES]
     - Fix a mojibake issue where utf8::upgrade() was always called when
       loading caches (hanabukuro++)

 3.0.1 2013-11-04 12:27:51+0900
+    [TEST FIXES]
     - Fix a test that might fail on a slow machine like Raspberry Pi
       (Getty++)
  • Loading branch information
gfx committed Nov 16, 2013
1 parent 92c7387 commit 6670ba4
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 5 deletions.
9 changes: 9 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -1,10 +1,19 @@
Revision history for Perl extension Text::Xslate

3.1.0 2013-11-16 16:46:35+0900
[BUG FIXES]
- Close #95; $/ affected the parse() method

[FEATURES]
- Add $xslate->validate($file) method to check template syntax

3.0.2 2013-11-15 21:56:53+0900
[BUG FIXES]
- Fix a mojibake issue where utf8::upgrade() was always called when
loading caches (hanabukuro++)

3.0.1 2013-11-04 12:27:51+0900
[TEST FIXES]
- Fix a test that might fail on a slow machine like Raspberry Pi
(Getty++)

Expand Down
2 changes: 2 additions & 0 deletions MANIFEST
Original file line number Diff line number Diff line change
Expand Up @@ -176,6 +176,7 @@ t/020_interface/013_slurp_template.t
t/020_interface/014_customize_option.t
t/020_interface/015_render_recursion.t
t/020_interface/016_pre_process_handler.t
t/020_interface/017_validate.t
t/030_kolon/001_interpolate.t
t/030_kolon/002_field.t
t/030_kolon/003_for.t
Expand Down Expand Up @@ -301,6 +302,7 @@ t/900_bugs/035_issue81_tiedhash.t
t/900_bugs/036_vpath_utf8.t
t/900_bugs/037_text_str_key.t
t/900_bugs/038_conbine_flaged_utf8_and_other.t
t/900_bugs/039_issue95.t
t/900_bugs/issue79/tmpl/contentA.tt
t/900_bugs/issue79/tmpl/contentB.tt
t/900_bugs/issue79/tmpl/wrapperA.tt
Expand Down
4 changes: 2 additions & 2 deletions lib/Text/Xslate.pm
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use 5.008_001;
use strict;
use warnings;

our $VERSION = '3.0.2';
our $VERSION = '3.1.0';

use Carp ();
use File::Spec ();
Expand Down Expand Up @@ -661,7 +661,7 @@ Text::Xslate - Scalable template engine for Perl5
=head1 VERSION
This document describes Text::Xslate version 3.0.2.
This document describes Text::Xslate version 3.1.0.
=head1 SYNOPSIS
Expand Down
4 changes: 2 additions & 2 deletions lib/Text/Xslate/PP.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package Text::Xslate::PP;
use 5.008_001;
use strict;

our $VERSION = '3.0.2';
our $VERSION = '3.1.0';

BEGIN{
$ENV{XSLATE} = ($ENV{XSLATE} || '') . '[pp]';
Expand Down Expand Up @@ -676,7 +676,7 @@ Text::Xslate::PP - Yet another Text::Xslate runtime in pure Perl
=head1 VERSION
This document describes Text::Xslate::PP version 3.0.2.
This document describes Text::Xslate::PP version 3.1.0.
=head1 DESCRIPTION
Expand Down
2 changes: 1 addition & 1 deletion lib/Text/Xslate/PP/Opcode.pm
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package Text::Xslate::PP::Opcode;
use Mouse;
extends qw(Text::Xslate::PP::State);

our $VERSION = '3.0.2';
our $VERSION = '3.1.0';

use Carp ();
use Scalar::Util ();
Expand Down

0 comments on commit 6670ba4

Please sign in to comment.