Skip to content

Commit 0c2da20

Browse files
committed
Bump version to 2.28
1 parent db0a461 commit 0c2da20

File tree

5 files changed

+88
-13
lines changed

5 files changed

+88
-13
lines changed

Changes

Lines changed: 72 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,82 @@
1818
# Unreleased
1919
#------------------------------------------------------------------------
2020

21+
#-----------------------------------------------------------------------
22+
# Version 2.28 - 11th October 2018
23+
#------------------------------------------------------------------------
24+
25+
* Add and enable Travis CI to track GitHub Pull Requests
26+
27+
* Template is now using GitHub as the official Bug Tracker
28+
29+
* Nicolas R. fixed a circular reference in Template::Plugin::Filter
30+
https://github.com/abw/Template2/issues/152
31+
32+
* Nicolas R. adjusted group regexes to not be greedy
33+
https://github.com/abw/Template2/issues/94
34+
35+
* Nicolas R. added unit tests to cover regression from RT 91172
36+
https://github.com/abw/Template2/issues/122
37+
38+
* Nicolas R. added support for template files having mtime=0
39+
https://github.com/abw/Template2/issues/102
40+
41+
* Todd Rinaldo fixed rand calls with no args in Math plugin
42+
https://github.com/abw/Template2/issues/155
43+
44+
* Todd Rinaldo corrected ttree 2.22 logic change
45+
https://github.com/abw/Template2/issues/148
46+
47+
* Todd Rinaldo turned off automated testing for tests using optional modules
48+
https://github.com/abw/Template2/issues/156
49+
50+
* Nicolas R. adjusted unit tests to not force Stash::XS
51+
52+
* Nicolas R. added a pre allocated buffer in Stash.xs to avoid malloc/free
53+
https://github.com/abw/Template2/issues/82
54+
55+
* Nicolas R. optmized Template::Parser by avoiding a dummy sub
56+
https://github.com/abw/Template2/issues/83
57+
58+
* Nicolas R. optimized Template:Directive by using index
59+
https://github.com/abw/Template2/issues/84
60+
61+
* Nicolas R. adjust _dotop logic in Stash for perl 5.28 and earlier
62+
https://github.com/abw/Template2/issues/81
63+
64+
* Todd Rinaldo documented VMethod method called 'item'
65+
https://github.com/abw/Template2/issues/90
66+
67+
* Nicolas R. adjust t/filter.t after RFC3986 being default for URI
68+
https://github.com/abw/Template2/issues/179
69+
70+
* Nicolas R. fixes warnings from t/cgi.t
71+
https://github.com/abw/Template2/issues/178
72+
73+
* Ivan Krylov add STRICT option to ttree
74+
https://github.com/abw/Template2/issues/81
75+
76+
* Kent Fredric fixd relative path handling in templates on Perl 5.26+
77+
https://github.com/abw/Template2/issues/80
78+
79+
* Tom Delmas fixed some typo in Documentation
80+
https://github.com/abw/Template2/issues/76
81+
2182
* Matthew Somerville switched uri/url to use RFC3986 as per the docs, and
2283
updated the documentation to match the history.
2384
https://github.com/abw/Template2/issues/35
2485

86+
* Sebastien Deseille removed rm external system command call
87+
https://github.com/abw/Template2/issues/67
88+
89+
* Nick Hibma - Add Sortkeys to DUMPER_ARGS
90+
https://github.com/abw/Template2/issues/64
91+
92+
* E. Choroba added a Warn on duplicate block name
93+
https://github.com/abw/Template2/issues/61
94+
95+
* Jason Lewis fixes some typo in ttree.pod
96+
https://github.com/abw/Template2/issues/58
2597

2698
#-----------------------------------------------------------------------
2799
# Version 2.27 - 13th December 2016

HACKING

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11

22
Template Toolkit
33

4-
Version 2.27
4+
Version 2.28
55

6-
December 2016
6+
October 2018
77

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

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

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

5353
This is free software; you can redistribute it and/or modify it under
5454
the same terms as Perl itself.

INSTALL

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11

22
Template Toolkit
33

4-
Version 2.27
4+
Version 2.28
55

6-
December 2016
6+
October 2018
77

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

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

3131
To install the Template Toolkit from the command line:
3232

33-
$ tar zxf Template-Toolkit-2.27.tar.gz
34-
$ cd Template-Toolkit-2.27
33+
$ tar zxf Template-Toolkit-2.28.tar.gz
34+
$ cd Template-Toolkit-2.28
3535
$ perl Makefile.PL
3636
$ make
3737
$ make test

README

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11

22
Template Toolkit
33

4-
Version 2.27
4+
Version 2.28
55

6-
December 2016
6+
October 2018
77

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

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

47+
Version 2.28 is a maintenance release fixing some minor bugs and warnings.
48+
GitHub is now the official bug tacker tool for the project.
49+
4750
Version 2.27 is a maintenance release fixing some minor bugs and warnings.
4851

4952
Version 2.26 adds the new outline tag style and fixes various minor bugs.

lib/Template.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ use File::Basename;
3232
use File::Path;
3333
use Scalar::Util qw(blessed);
3434

35-
our $VERSION = '2.27';
35+
our $VERSION = '2.28';
3636
our $ERROR = '';
3737
our $DEBUG = 0;
3838
our $BINMODE = 0 unless defined $BINMODE;

0 commit comments

Comments
 (0)