Skip to content

Commit

Permalink
Bump version to 2.28
Browse files Browse the repository at this point in the history
  • Loading branch information
atoomic committed Oct 11, 2018
1 parent db0a461 commit 0c2da20
Show file tree
Hide file tree
Showing 5 changed files with 88 additions and 13 deletions.
72 changes: 72 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,82 @@
# Unreleased
#------------------------------------------------------------------------

#-----------------------------------------------------------------------
# Version 2.28 - 11th October 2018
#------------------------------------------------------------------------

* Add and enable Travis CI to track GitHub Pull Requests

* Template is now using GitHub as the official Bug Tracker

* Nicolas R. fixed a circular reference in Template::Plugin::Filter
https://github.com/abw/Template2/issues/152

* Nicolas R. adjusted group regexes to not be greedy
https://github.com/abw/Template2/issues/94

* Nicolas R. added unit tests to cover regression from RT 91172
https://github.com/abw/Template2/issues/122

* Nicolas R. added support for template files having mtime=0
https://github.com/abw/Template2/issues/102

* Todd Rinaldo fixed rand calls with no args in Math plugin
https://github.com/abw/Template2/issues/155

* Todd Rinaldo corrected ttree 2.22 logic change
https://github.com/abw/Template2/issues/148

* Todd Rinaldo turned off automated testing for tests using optional modules
https://github.com/abw/Template2/issues/156

* Nicolas R. adjusted unit tests to not force Stash::XS

* Nicolas R. added a pre allocated buffer in Stash.xs to avoid malloc/free
https://github.com/abw/Template2/issues/82

* Nicolas R. optmized Template::Parser by avoiding a dummy sub
https://github.com/abw/Template2/issues/83

* Nicolas R. optimized Template:Directive by using index
https://github.com/abw/Template2/issues/84

* Nicolas R. adjust _dotop logic in Stash for perl 5.28 and earlier
https://github.com/abw/Template2/issues/81

* Todd Rinaldo documented VMethod method called 'item'
https://github.com/abw/Template2/issues/90

* Nicolas R. adjust t/filter.t after RFC3986 being default for URI
https://github.com/abw/Template2/issues/179

* Nicolas R. fixes warnings from t/cgi.t
https://github.com/abw/Template2/issues/178

* Ivan Krylov add STRICT option to ttree
https://github.com/abw/Template2/issues/81

* Kent Fredric fixd relative path handling in templates on Perl 5.26+
https://github.com/abw/Template2/issues/80

* Tom Delmas fixed some typo in Documentation
https://github.com/abw/Template2/issues/76

* Matthew Somerville switched uri/url to use RFC3986 as per the docs, and
updated the documentation to match the history.
https://github.com/abw/Template2/issues/35

* Sebastien Deseille removed rm external system command call
https://github.com/abw/Template2/issues/67

* Nick Hibma - Add Sortkeys to DUMPER_ARGS
https://github.com/abw/Template2/issues/64

* E. Choroba added a Warn on duplicate block name
https://github.com/abw/Template2/issues/61

* Jason Lewis fixes some typo in ttree.pod
https://github.com/abw/Template2/issues/58

#-----------------------------------------------------------------------
# Version 2.27 - 13th December 2016
Expand Down
8 changes: 4 additions & 4 deletions HACKING
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@

Template Toolkit

Version 2.27
Version 2.28

December 2016
October 2018

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

This is free software; you can redistribute it and/or
modify it under the same terms as Perl itself.
Expand Down Expand Up @@ -48,7 +48,7 @@ people. See Template::Manual::Credits for details.
COPYRIGHT
---------

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

This is free software; you can redistribute it and/or modify it under
the same terms as Perl itself.
10 changes: 5 additions & 5 deletions INSTALL
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@

Template Toolkit

Version 2.27
Version 2.28

December 2016
October 2018

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

This is free software; you can redistribute it and/or
modify it under the same terms as Perl itself.
Expand All @@ -30,8 +30,8 @@ Available from CPAN in:

To install the Template Toolkit from the command line:

$ tar zxf Template-Toolkit-2.27.tar.gz
$ cd Template-Toolkit-2.27
$ tar zxf Template-Toolkit-2.28.tar.gz
$ cd Template-Toolkit-2.28
$ perl Makefile.PL
$ make
$ make test
Expand Down
9 changes: 6 additions & 3 deletions README
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@

Template Toolkit

Version 2.27
Version 2.28

December 2016
October 2018

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

This is free software; you can redistribute it and/or
modify it under the same terms as Perl itself.
Expand Down Expand Up @@ -44,6 +44,9 @@ other offline document systems.
WHAT'S NEW?
-----------

Version 2.28 is a maintenance release fixing some minor bugs and warnings.
GitHub is now the official bug tacker tool for the project.

Version 2.27 is a maintenance release fixing some minor bugs and warnings.

Version 2.26 adds the new outline tag style and fixes various minor bugs.
Expand Down
2 changes: 1 addition & 1 deletion lib/Template.pm
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ use File::Basename;
use File::Path;
use Scalar::Util qw(blessed);

our $VERSION = '2.27';
our $VERSION = '2.28';
our $ERROR = '';
our $DEBUG = 0;
our $BINMODE = 0 unless defined $BINMODE;
Expand Down

0 comments on commit 0c2da20

Please sign in to comment.