0.07
Stevan Little [Mon, 28 Apr 2008 16:10:28 +0000 (16:10 +0000)]
Changes
lib/Moose/Autobox/Hash.pm
lib/Moose/Autobox/Indexed.pm

diff --git a/Changes b/Changes
index 2187d54..9ee1cb6 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,6 +1,6 @@
 Revision history for Perl extension Moose::Autobox
 
-0.07
+0.07 Mon. April 28, 2008
     * Moose::Autobox
       - added documentation about how to extend the autoboxed
         types (RT #34315)
index 2f58a33..62b8946 100644 (file)
@@ -1,8 +1,6 @@
 package Moose::Autobox::Hash;
 use Moose::Role 'with';
 
-use Carp qw(croak);
-
 our $VERSION = '0.03';
 
 with 'Moose::Autobox::Ref',
@@ -15,7 +13,7 @@ sub delete {
 
 sub merge {
     my ($left, $right) = @_;
-    croak "You must pass a hashref as argument to merge"
+    Carp::confess "You must pass a hashref as argument to merge"
         unless ref $right eq 'HASH';
     return { %$left, %$right };
 }
index feb0174..5efd461 100644 (file)
@@ -1,7 +1,7 @@
 package Moose::Autobox::Indexed;     
 use Moose::Role 'requires';
 
-our $VERSION = '0.01';
+our $VERSION = '0.02';
 
 requires 'at';
 requires 'put';