Removed Test::Exception line which was causing test failures
Joel Bernstein [Thu, 22 Feb 2007 21:44:59 +0000 (21:44 +0000)]
Bumped version number

Build.PL
Changes
MANIFEST
lib/Config/Any.pm
t/10-branches.t

index 3ba96c7..d1d1cd9 100644 (file)
--- a/Build.PL
+++ b/Build.PL
@@ -13,7 +13,7 @@ my $builder = Module::Build->new(
                'Module::Pluggable' => '3.01'
     },
     add_to_cleanup      => [ 'Config-Any-*' ],
-       create_makefile_pl => 'traditional',
+    create_makefile_pl => 'traditional',
 );
 
 $builder->create_build_script();
diff --git a/Changes b/Changes
index dcd3eb3..47ae85f 100644 (file)
--- a/Changes
+++ b/Changes
@@ -5,3 +5,15 @@ Revision history for Config-Any
 0.04  Mon Aug  7 15:15:15 2006
        Initial CPAN-worthy release with proper test suite
 
+0.05  Wed Feb 21 22:00:00 2007
+       added support for:
+               'force_plugins => [ qw(Config::Any::Foo Config::Any::Blah) ]' parameter
+                       to load_(files|stems)
+               $Config::Any::INI::MAP_SECTION_SPACE_TO_NESTED_KEY - boolean, defaulting
+                       to on, controlling whether to map spaces in INI section headings 
+                       to nested hashrefs 
+               both as requested by Evan Kaufman       
+
+0.06 Thu Feb 22 21:05:00 2007
+       removed reference to Test::Exception, bumped version number
+
index 1d75711..0eac562 100644 (file)
--- a/MANIFEST
+++ b/MANIFEST
@@ -19,7 +19,9 @@ t/52-json.t
 t/53-perl.t
 t/54-xml.t
 t/55-yaml.t
+t/61-features.t
 t/conf/conf.conf
+t/conf/conf.foo
 t/conf/conf.ini
 t/conf/conf.json
 t/conf/conf.pl
@@ -28,3 +30,4 @@ t/conf/conf.yml
 t/conf/conf2.ini
 t/pod-coverage.t
 t/pod.t
+META.yml
index 7eaae8a..c64c12c 100644 (file)
@@ -6,7 +6,7 @@ use Carp;
 use Module::Pluggable::Object ();
 use English qw(-no_match_vars);
 
-our $VERSION = '0.05';
+our $VERSION = '0.06';
 
 =head1 NAME
 
index 3e0f400..8e8d1b3 100644 (file)
@@ -1,5 +1,4 @@
 use Test::More tests => 9;\r
-use Test::Exception;\r
 use Config::Any;\r
 \r
 ok ( ! Config::Any->load_files(),  "load_files expects args" );\r