From: Ian Wells Date: Tue, 21 Apr 2009 13:29:02 +0000 (+0000) Subject: Not really very (EXPERIMENTAL) any more X-Git-Tag: 0.03001~8 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=dbsrgits%2FDBIx-Class-Tree.git;a=commitdiff_plain;h=af9120b08177e0549800dbadc963302d73f1e48f Not really very (EXPERIMENTAL) any more --- diff --git a/Changes b/Changes index 2b391c6..efee9ea 100644 --- a/Changes +++ b/Changes @@ -1,6 +1,14 @@ Revision history for DBIx::Class::Tree + + - Removed EXPERIMENTAL flags, because after 2 years there'd be bugs + if there were any serious problems. (Ian Wells) + - Fix borked tests (DBIx-Class 0.081 got rid of the loophole they used) + (ribasushi) + +[missing 0.02000] + 0.01000 2006-11-06 - Added is_leaf, is_root, and is_branch to AdjacencyList. - Added a validation override for set_primary_key(). diff --git a/META.yml b/META.yml index 4e16cc4..c70d916 100644 --- a/META.yml +++ b/META.yml @@ -3,7 +3,7 @@ name: DBIx-Class-Tree version: 0.01000 author: - 'Aran Clary Deltac ' -abstract: Manipulate and anaylze tree structured data. (EXPERIMENTAL) +abstract: Manipulate and anaylze tree structured data. license: perl resources: license: http://dev.perl.org/licenses/ diff --git a/README b/README index e6868b4..a4197ed 100644 --- a/README +++ b/README @@ -1,6 +1,5 @@ NAME DBIx::Class::Tree - Manipulate and anaylze tree structured data. - (EXPERIMENTAL) DESCRIPTION The tree modules provide the tools to represent, modify, and analyze @@ -8,10 +7,10 @@ DESCRIPTION COMPONENTS DBIx::Class::Tree::AdjacencyList - Manage a tree of data using the - common adjacency list model. (EXPERIMENTAL) + common adjacency list model. DBIx::Class::Tree::AdjacencyList::Ordered - Glue DBIx::Class::Ordered - and DBIx::Class::Tree::AdjacencyList together. (EXPERIMENTAL) + and DBIx::Class::Tree::AdjacencyList together. DAG All tree related modules must conform to have and use the basic diff --git a/lib/DBIx/Class/Tree.pm b/lib/DBIx/Class/Tree.pm index 7ce2535..3e8f690 100644 --- a/lib/DBIx/Class/Tree.pm +++ b/lib/DBIx/Class/Tree.pm @@ -14,7 +14,7 @@ __END__ =head1 NAME -DBIx::Class::Tree - Manipulate and anaylze tree structured data. (EXPERIMENTAL) +DBIx::Class::Tree - Manipulate and anaylze tree structured data. =head1 DESCRIPTION @@ -24,10 +24,10 @@ trees of data with DBIx::Class. =head1 COMPONENTS L - Manage a tree of data using the -common adjacency list model. (EXPERIMENTAL) +common adjacency list model. L - Glue DBIx::Class::Ordered -and DBIx::Class::Tree::AdjacencyList together. (EXPERIMENTAL) +and DBIx::Class::Tree::AdjacencyList together. =head1 DAG diff --git a/lib/DBIx/Class/Tree/AdjacencyList.pm b/lib/DBIx/Class/Tree/AdjacencyList.pm index 42fddf3..d2aedb8 100644 --- a/lib/DBIx/Class/Tree/AdjacencyList.pm +++ b/lib/DBIx/Class/Tree/AdjacencyList.pm @@ -9,7 +9,7 @@ use Carp qw( croak ); =head1 NAME -DBIx::Class::Tree::AdjacencyList - Manage a tree of data using the common adjacency list model. (EXPERIMENTAL) +DBIx::Class::Tree::AdjacencyList - Manage a tree of data using the common adjacency list model. =head1 SYNOPSIS diff --git a/lib/DBIx/Class/Tree/AdjacencyList/Ordered.pm b/lib/DBIx/Class/Tree/AdjacencyList/Ordered.pm index d3b7eb2..b8b3b5c 100644 --- a/lib/DBIx/Class/Tree/AdjacencyList/Ordered.pm +++ b/lib/DBIx/Class/Tree/AdjacencyList/Ordered.pm @@ -14,7 +14,7 @@ __PACKAGE__->load_components(qw( =head1 NAME -DBIx::Class::Tree::AdjacencyList::Ordered - Glue DBIx::Class::Ordered and DBIx::Class::Tree::AdjacencyList together. (EXPERIMENTAL) +DBIx::Class::Tree::AdjacencyList::Ordered - Glue DBIx::Class::Ordered and DBIx::Class::Tree::AdjacencyList together. =head1 SYNOPSIS