summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--lib/Tree/Template/Declare.pm2
-rw-r--r--lib/Tree/Template/Declare/DAG_Node.pm2
-rw-r--r--lib/Tree/Template/Declare/HTML_Element.pm2
-rw-r--r--lib/Tree/Template/Declare/LibXML.pm2
5 files changed, 9 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index 7ce649d..4432ea1 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,10 @@
.. -*- mode: rst; coding: utf-8 -*-
+0.3 2009-06-27
+ - now the "current node" is global, so that you can call
+ node-generating subs in other packages, and actually get the
+ result (see 07-inherit.t)
+
0.2 2009-04-30
- fixed Perl::Critic tests
- fixed perl version requirement
diff --git a/lib/Tree/Template/Declare.pm b/lib/Tree/Template/Declare.pm
index fff3ccd..28901c4 100644
--- a/lib/Tree/Template/Declare.pm
+++ b/lib/Tree/Template/Declare.pm
@@ -7,7 +7,7 @@ use Carp;
use Data::Dumper;
use 5.006;
-our $VERSION='0.2';
+our $VERSION='0.3';
{
my $exporter=Sub::Exporter::build_exporter({
diff --git a/lib/Tree/Template/Declare/DAG_Node.pm b/lib/Tree/Template/Declare/DAG_Node.pm
index 56d739c..97bee01 100644
--- a/lib/Tree/Template/Declare/DAG_Node.pm
+++ b/lib/Tree/Template/Declare/DAG_Node.pm
@@ -3,7 +3,7 @@ use strict;
use warnings;
use Carp;
-our $VERSION='0.2';
+our $VERSION='0.3';
sub new {
my ($class,$node_class)=@_;
diff --git a/lib/Tree/Template/Declare/HTML_Element.pm b/lib/Tree/Template/Declare/HTML_Element.pm
index bdf3fa7..4202225 100644
--- a/lib/Tree/Template/Declare/HTML_Element.pm
+++ b/lib/Tree/Template/Declare/HTML_Element.pm
@@ -4,7 +4,7 @@ use warnings;
use Carp;
use HTML::Element;
-our $VERSION='0.2';
+our $VERSION='0.3';
sub new {
my ($class)=@_;
diff --git a/lib/Tree/Template/Declare/LibXML.pm b/lib/Tree/Template/Declare/LibXML.pm
index 8a93597..ad4ae6d 100644
--- a/lib/Tree/Template/Declare/LibXML.pm
+++ b/lib/Tree/Template/Declare/LibXML.pm
@@ -4,7 +4,7 @@ use warnings;
use Carp;
use XML::LibXML;
-our $VERSION='0.2';
+our $VERSION='0.3';
sub new {
my ($class)=@_;