Not really very (EXPERIMENTAL) any more
Ian Wells [Tue, 21 Apr 2009 13:29:02 +0000 (13:29 +0000)]
Changes
META.yml
README
lib/DBIx/Class/Tree.pm
lib/DBIx/Class/Tree/AdjacencyList.pm
lib/DBIx/Class/Tree/AdjacencyList/Ordered.pm

diff --git a/Changes b/Changes
index 2b391c6..efee9ea 100644 (file)
--- 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().
index 4e16cc4..c70d916 100644 (file)
--- a/META.yml
+++ b/META.yml
@@ -3,7 +3,7 @@ name: DBIx-Class-Tree
 version: 0.01000
 author:
   - 'Aran Clary Deltac <bluefeet@cpan.org>'
-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 (file)
--- 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
index 7ce2535..3e8f690 100644 (file)
@@ -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<DBIx::Class::Tree::AdjacencyList> - Manage a tree of data using the 
-common adjacency list model. (EXPERIMENTAL)
+common adjacency list model.
 
 L<DBIx::Class::Tree::AdjacencyList::Ordered> - Glue DBIx::Class::Ordered 
-and DBIx::Class::Tree::AdjacencyList together. (EXPERIMENTAL)
+and DBIx::Class::Tree::AdjacencyList together.
 
 =head1 DAG
 
index 42fddf3..d2aedb8 100644 (file)
@@ -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
 
index d3b7eb2..b8b3b5c 100644 (file)
@@ -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