Skip to content

Commit

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

diff --git a/Changes b/Changes
index 605d1077..38f53e26 100644
--- a/Changes
+++ b/Changes
@@ -2,6 +2,9 @@ Revision history for Perl extension Text::Xslate

 {{$NEXT}}

+v3.5.1 2017-11-30T16:09:33Z
+    - Fix packaging issue; explicitly declare version for Text::Xslate::Engine
+
 v3.5.0 2017-11-30T15:57:50Z
     - Migrate to using minil (#179)
     - Improve perl 5.8 support (#182)
  • Loading branch information
skaji committed Nov 30, 2017
1 parent 635726b commit ebc4d3f
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 8 deletions.
3 changes: 3 additions & 0 deletions Changes
Expand Up @@ -2,6 +2,9 @@ Revision history for Perl extension Text::Xslate

{{$NEXT}}

v3.5.1 2017-11-30T16:09:33Z
- Fix packaging issue; explicitly declare version for Text::Xslate::Engine

v3.5.0 2017-11-30T15:57:50Z
- Migrate to using minil (#179)
- Improve perl 5.8 support (#182)
Expand Down
2 changes: 1 addition & 1 deletion META.json
Expand Up @@ -77,7 +77,7 @@
"web" : "https://github.com/xslate/p5-Text-Xslate"
}
},
"version" : "v3.5.0",
"version" : "v3.5.1",
"x_contributors" : [
"André Walker <andre@andrewalker.net>",
"Anirvan Chatterjee <anirvan@users.noreply.github.com>",
Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -5,7 +5,7 @@ Text::Xslate - Scalable template engine for Perl5

# VERSION

This document describes Text::Xslate version v3.5.0.
This document describes Text::Xslate version v3.5.1.

# SYNOPSIS

Expand Down
6 changes: 3 additions & 3 deletions lib/Text/Xslate.pm
Expand Up @@ -4,7 +4,7 @@ use 5.008_001;
use strict;
use warnings;

use version; our $VERSION = version->declare('v3.5.0');
use version; our $VERSION = version->declare('v3.5.1');

use Carp ();
use File::Spec ();
Expand Down Expand Up @@ -58,7 +58,7 @@ sub input_layer { ref($_[0]) ? $_[0]->{input_layer} : ':utf8' }

package Text::Xslate::Engine; # XS/PP common base class

use version; our $VERSION = version->declare('v3.5.0');
use version; our $VERSION = version->declare('v3.5.1');

use Text::Xslate::Util qw(
make_error
Expand Down Expand Up @@ -672,7 +672,7 @@ Text::Xslate - Scalable template engine for Perl5
=head1 VERSION
This document describes Text::Xslate version v3.5.0.
This document describes Text::Xslate version v3.5.1.
=head1 SYNOPSIS
Expand Down
4 changes: 2 additions & 2 deletions lib/Text/Xslate/PP.pm
Expand Up @@ -3,7 +3,7 @@ package Text::Xslate::PP;
use 5.008_001;
use strict;

use version; our $VERSION = version->declare('v3.5.0');
use version; our $VERSION = version->declare('v3.5.1');

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

use version; our $VERSION = version->declare('v3.5.0');
use version; our $VERSION = version->declare('v3.5.1');

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

0 comments on commit ebc4d3f

Please sign in to comment.