bump version
[gitmo/Role-Tiny.git] / lib / Role / Tiny / With.pm
index 0633de8..7075b75 100644 (file)
@@ -2,6 +2,10 @@ package Role::Tiny::With;
 
 use strict;
 use warnings FATAL => 'all';
+
+our $VERSION = '1.003003';
+$VERSION = eval $VERSION;
+
 use Role::Tiny ();
 
 use Exporter 'import';
@@ -9,7 +13,7 @@ our @EXPORT = qw( with );
 
 sub with {
     my $target = caller;
-    Role::Tiny->apply_union_of_roles_to_package($target, @_)
+    Role::Tiny->apply_roles_to_package($target, @_)
 }
 
 1;