Skip to content

Commit

Permalink
Bump version for 3.009 release
Browse files Browse the repository at this point in the history
  • Loading branch information
atoomic committed Jul 13, 2020
1 parent f4a332a commit fa386e9
Show file tree
Hide file tree
Showing 51 changed files with 66 additions and 60 deletions.
4 changes: 4 additions & 0 deletions Changes
Expand Up @@ -10,6 +10,10 @@
#
#========================================================================

#-----------------------------------------------------------------------
# Version 3.009 - 13th July 2020
#------------------------------------------------------------------------

* Revert "Allow SET to have FILTER used in it"

#-----------------------------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion HACKING
@@ -1,7 +1,7 @@

Template Toolkit

Version 3.008
Version 3.009

January 2020

Expand Down
16 changes: 8 additions & 8 deletions INSTALL
@@ -1,7 +1,7 @@

Template Toolkit

Version 3.008
Version 3.009

January 2020

Expand Down Expand Up @@ -30,8 +30,8 @@ Available from CPAN in:

To install the Template Toolkit from the command line:

$ tar zxf Template-Toolkit-3.008.tar.gz
$ cd Template-Toolkit-3.008
$ tar zxf Template-Toolkit-3.009.tar.gz
$ cd Template-Toolkit-3.009
$ perl Makefile.PL
$ make
$ make test
Expand Down Expand Up @@ -85,19 +85,19 @@ The Template Toolkit is distributed as a gzipped tar archive file:

Template-Toolkit-<version>.tar.gz

where <version> represents the current version number, e.g. 3.008.
where <version> represents the current version number, e.g. 3.009.

To install the Template Toolkit, unpack the distribution archive to
create an installation directory. Something like this:

$ tar zxf Template-Toolkit-3.008.tar.gz
$ tar zxf Template-Toolkit-3.009.tar.gz
or
$ gunzip Template-Toolkit-3.008.tar.gz
$ tar xf Template-Toolkit-3.008.tar
$ gunzip Template-Toolkit-3.009.tar.gz
$ tar xf Template-Toolkit-3.009.tar

You can then 'cd' into the directory created,

$ cd Template-Toolkit-3.008
$ cd Template-Toolkit-3.009

and perform the usual Perl installation procedure:

Expand Down
6 changes: 4 additions & 2 deletions README.md
Expand Up @@ -2,9 +2,9 @@

Template Toolkit

Version 3.008
Version 3.009

January 2020
July 2020

Copyright (C) 1996-2020 Andy Wardley. All Rights Reserved

Expand Down Expand Up @@ -45,6 +45,8 @@ other offline document systems.
WHAT'S NEW?
-----------

Version 3.009 revert "Allow SET to have FILTER used in it"

Version 3.008 fixes some testing issue with CGI and taint issues.

Version 3.007 fixes a cpanm issue.
Expand Down
4 changes: 2 additions & 2 deletions lib/Template.pm
Expand Up @@ -32,7 +32,7 @@ use File::Basename;
use File::Path;
use Scalar::Util qw(blessed);

our $VERSION = '3.008';
our $VERSION = '3.009';
our $ERROR = '';
our $DEBUG = 0;
our $BINMODE = 0 unless defined $BINMODE;
Expand Down Expand Up @@ -915,7 +915,7 @@ Andy Wardley E<lt>abw@wardley.orgE<gt> L<http://wardley.org/>
=head1 VERSION
Template Toolkit version 3.008, released on 30 March 2020.
Template Toolkit version 3.009, released on July 13 2020.
=head1 COPYRIGHT
Expand Down
2 changes: 1 addition & 1 deletion lib/Template/Base.pm
Expand Up @@ -23,7 +23,7 @@ use strict;
use warnings;
use Template::Constants;

our $VERSION = '3.008';
our $VERSION = '3.009';


#------------------------------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion lib/Template/Config.pm
Expand Up @@ -22,7 +22,7 @@ use strict;
use warnings;
use base 'Template::Base';

our $VERSION = '3.008';
our $VERSION = '3.009';

our $DEBUG;
$DEBUG = 0 unless defined $DEBUG;
Expand Down
2 changes: 1 addition & 1 deletion lib/Template/Constants.pm
Expand Up @@ -28,7 +28,7 @@ use base qw( Exporter );
our ( @EXPORT_OK, %EXPORT_TAGS );
our ( $DEBUG_OPTIONS, @STATUS, @ERROR, @CHOMP, @DEBUG, @ISA );

our $VERSION = '3.008';
our $VERSION = '3.009';

#========================================================================
# ----- EXPORTER -----
Expand Down
2 changes: 1 addition & 1 deletion lib/Template/Context.pm
Expand Up @@ -35,7 +35,7 @@ use constant EXCEPTION => 'Template::Exception';
use constant BADGER_EXCEPTION => 'Badger::Exception';
use constant MSWin32 => $^O eq 'MSWin32';

our $VERSION = '3.008';
our $VERSION = '3.009';
our $DEBUG = 0 unless defined $DEBUG;
our $DEBUG_FORMAT = "\n## \$file line \$line : [% \$text %] ##\n";
our $VIEW_CLASS = 'Template::View';
Expand Down
2 changes: 1 addition & 1 deletion lib/Template/Directive.pm
Expand Up @@ -32,7 +32,7 @@ use base 'Template::Base';
use Template::Constants;
use Template::Exception;

our $VERSION = '3.008';
our $VERSION = '3.009';
our $DEBUG = 0 unless defined $DEBUG;
our $WHILE_MAX = 1000 unless defined $WHILE_MAX;
our $PRETTY = 0 unless defined $PRETTY;
Expand Down
2 changes: 1 addition & 1 deletion lib/Template/Document.pm
Expand Up @@ -26,7 +26,7 @@ use warnings;
use base 'Template::Base';
use Template::Constants;

our $VERSION = '3.008';
our $VERSION = '3.009';
our $DEBUG = 0 unless defined $DEBUG;
our $ERROR = '';
our ($COMPERR, $AUTOLOAD, $UNICODE);
Expand Down
2 changes: 1 addition & 1 deletion lib/Template/Exception.pm
Expand Up @@ -26,7 +26,7 @@ use constant INFO => 1;
use constant TEXT => 2;
use overload q|""| => "as_string", fallback => 1;

our $VERSION = '3.008';
our $VERSION = '3.009';


#------------------------------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion lib/Template/Filters.pm
Expand Up @@ -26,7 +26,7 @@ use base 'Template::Base';
use Template::Constants;
use Scalar::Util 'blessed';

our $VERSION = '3.008';
our $VERSION = '3.009';
our $AVAILABLE = { };
our $TRUNCATE_LENGTH = 32;
our $TRUNCATE_ADDON = '...';
Expand Down
2 changes: 1 addition & 1 deletion lib/Template/Grammar.pm
Expand Up @@ -30,7 +30,7 @@ package Template::Grammar;
use strict;
use warnings;

our $VERSION = '3.008';
our $VERSION = '3.009';

my (@RESERVED, %CMPOP, $LEXTABLE, $RULES, $STATES);
my ($factory, $rawstart);
Expand Down
2 changes: 1 addition & 1 deletion lib/Template/Iterator.pm
Expand Up @@ -31,7 +31,7 @@ use Scalar::Util qw(blessed);
use constant ODD => 'odd';
use constant EVEN => 'even';

our $VERSION = '3.008';
our $VERSION = '3.009';
our $DEBUG = 0 unless defined $DEBUG;
our $AUTOLOAD;

Expand Down
2 changes: 1 addition & 1 deletion lib/Template/Map.pm
Expand Up @@ -28,7 +28,7 @@ use strict;
use warnings;
use base 'Template::Base';

our $VERSION = '3.008';
our $VERSION = '3.009';
our $DEBUG = 0 unless defined $DEBUG;
our $MAP = {
HASH => 'hash',
Expand Down
2 changes: 1 addition & 1 deletion lib/Template/Namespace/Constants.pm
Expand Up @@ -26,7 +26,7 @@ use Template::Config;
use Template::Directive;
use Template::Exception;

our $VERSION = '3.008';
our $VERSION = '3.009';
our $DEBUG = 0 unless defined $DEBUG;


Expand Down
2 changes: 1 addition & 1 deletion lib/Template/Parser.pm
Expand Up @@ -46,7 +46,7 @@ use constant ACCEPT => 1;
use constant ERROR => 2;
use constant ABORT => 3;

our $VERSION = '3.008';
our $VERSION = '3.009';
our $DEBUG = 0 unless defined $DEBUG;
our $ERROR = '';

Expand Down
2 changes: 1 addition & 1 deletion lib/Template/Plugin.pm
Expand Up @@ -24,7 +24,7 @@ use strict;
use warnings;
use base 'Template::Base';

our $VERSION = '3.008';
our $VERSION = '3.009';
our $DEBUG = 0 unless defined $DEBUG;
our $ERROR = '';
our $AUTOLOAD;
Expand Down
2 changes: 1 addition & 1 deletion lib/Template/Plugin/Assert.pm
Expand Up @@ -23,7 +23,7 @@ use strict;
use warnings;
use Template::Exception;

our $VERSION = '3.008';
our $VERSION = '3.009';
our $MONAD = 'Template::Monad::Assert';
our $EXCEPTION = 'Template::Exception';
our $AUTOLOAD;
Expand Down
2 changes: 1 addition & 1 deletion lib/Template/Plugin/CGI.pm
Expand Up @@ -23,7 +23,7 @@ use warnings;
use base 'Template::Plugin';
use CGI;

our $VERSION = '3.008';
our $VERSION = '3.009';

sub new {
my $class = shift;
Expand Down
2 changes: 1 addition & 1 deletion lib/Template/Plugin/Datafile.pm
Expand Up @@ -23,7 +23,7 @@ use strict;
use warnings;
use base 'Template::Plugin';

our $VERSION = '3.008';
our $VERSION = '3.009';

sub new {
my ($class, $context, $filename, $params) = @_;
Expand Down
2 changes: 1 addition & 1 deletion lib/Template/Plugin/Date.pm
Expand Up @@ -30,7 +30,7 @@ use Config ();

use constant HAS_SETLOCALE => $Config::Config{d_setlocale};

our $VERSION = '3.008';
our $VERSION = '3.009';
our $FORMAT = '%H:%M:%S %d-%b-%Y'; # default strftime() format
our @LOCALE_SUFFIX = qw( .ISO8859-1 .ISO_8859-15 .US-ASCII .UTF-8 );

Expand Down
2 changes: 1 addition & 1 deletion lib/Template/Plugin/Directory.pm
Expand Up @@ -26,7 +26,7 @@ use File::Spec;
use Template::Plugin::File;
use base 'Template::Plugin::File';

our $VERSION = '3.008';
our $VERSION = '3.009';


#------------------------------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion lib/Template/Plugin/Dumper.pm
Expand Up @@ -24,7 +24,7 @@ use warnings;
use base 'Template::Plugin';
use Data::Dumper;

our $VERSION = '3.008';
our $VERSION = '3.009';
our $DEBUG = 0 unless defined $DEBUG;
our @DUMPER_ARGS = qw( Indent Pad Varname Purity Useqq Terse Freezer
Toaster Deepcopy Quotekeys Bless Maxdepth Sortkeys );
Expand Down
2 changes: 1 addition & 1 deletion lib/Template/Plugin/File.pm
Expand Up @@ -28,7 +28,7 @@ use File::Spec;
use File::Basename;
use base 'Template::Plugin';

our $VERSION = '3.008';
our $VERSION = '3.009';

our @STAT_KEYS = qw( dev ino mode nlink uid gid rdev size
atime mtime ctime blksize blocks );
Expand Down
2 changes: 1 addition & 1 deletion lib/Template/Plugin/Filter.pm
Expand Up @@ -26,7 +26,7 @@ use base 'Template::Plugin';
use Scalar::Util 'weaken', 'isweak';


our $VERSION = '3.008';
our $VERSION = '3.009';
our $DYNAMIC = 0 unless defined $DYNAMIC;


Expand Down
2 changes: 1 addition & 1 deletion lib/Template/Plugin/Format.pm
Expand Up @@ -23,7 +23,7 @@ use strict;
use warnings;
use base 'Template::Plugin';

our $VERSION = '3.008';
our $VERSION = '3.009';


sub new {
Expand Down
2 changes: 1 addition & 1 deletion lib/Template/Plugin/HTML.pm
Expand Up @@ -23,7 +23,7 @@ use strict;
use warnings;
use base 'Template::Plugin';

our $VERSION = '3.008';
our $VERSION = '3.009';

sub new {
my ($class, $context, @args) = @_;
Expand Down
2 changes: 1 addition & 1 deletion lib/Template/Plugin/Image.pm
Expand Up @@ -22,7 +22,7 @@ use base 'Template::Plugin';
use Template::Exception;
use File::Spec;

our $VERSION = '3.008';
our $VERSION = '3.009';
our $AUTOLOAD;

BEGIN {
Expand Down
2 changes: 1 addition & 1 deletion lib/Template/Plugin/Iterator.pm
Expand Up @@ -25,7 +25,7 @@ use warnings;
use base 'Template::Plugin';
use Template::Iterator;

our $VERSION = '3.008';
our $VERSION = '3.009';

#------------------------------------------------------------------------
# new($context, \@data, \%args)
Expand Down
2 changes: 1 addition & 1 deletion lib/Template/Plugin/List.pm
Expand Up @@ -26,7 +26,7 @@ use Template::Exception;
use overload q|""| => "text",
fallback => 1;

our $VERSION = '3.008';
our $VERSION = '3.009';
our $ERROR = '';


Expand Down
2 changes: 1 addition & 1 deletion lib/Template/Plugin/Math.pm
Expand Up @@ -22,7 +22,7 @@ use strict;
use warnings;
use base 'Template::Plugin';

our $VERSION = '3.008';
our $VERSION = '3.009';
our $AUTOLOAD;


Expand Down
2 changes: 1 addition & 1 deletion lib/Template/Plugin/Pod.pm
Expand Up @@ -24,7 +24,7 @@ use base 'Template::Plugin';
use Pod::POM;


our $VERSION = '3.008';
our $VERSION = '3.009';

#------------------------------------------------------------------------
# new($context, \%config)
Expand Down
2 changes: 1 addition & 1 deletion lib/Template/Plugin/Procedural.pm
Expand Up @@ -22,7 +22,7 @@ use strict;
use warnings;
use base 'Template::Plugin';

our $VERSION = '3.008';
our $VERSION = '3.009';
our $DEBUG = 0 unless defined $DEBUG;
our $AUTOLOAD;

Expand Down
2 changes: 1 addition & 1 deletion lib/Template/Plugin/Scalar.pm
Expand Up @@ -24,7 +24,7 @@ use warnings;
use Template::Exception;
use Scalar::Util qw();

our $VERSION = '3.008';
our $VERSION = '3.009';
our $MONAD = 'Template::Monad::Scalar';
our $EXCEPTION = 'Template::Exception';
our $AUTOLOAD;
Expand Down
2 changes: 1 addition & 1 deletion lib/Template/Plugin/String.pm
Expand Up @@ -26,7 +26,7 @@ use Template::Exception;
use overload q|""| => "text",
fallback => 1;

our $VERSION = '3.008';
our $VERSION = '3.009';
our $ERROR = '';

*centre = \*center;
Expand Down

0 comments on commit fa386e9

Please sign in to comment.